diff options
71 files changed, 15728 insertions, 15278 deletions
diff --git a/nova/cmd/baremetal_deploy_helper.py b/nova/cmd/baremetal_deploy_helper.py index 8586e6e59..7b9b51e11 100644 --- a/nova/cmd/baremetal_deploy_helper.py +++ b/nova/cmd/baremetal_deploy_helper.py @@ -91,6 +91,7 @@ def make_partitions(dev, root_mb, swap_mb): stdin_command = ('1,%d,83;\n,%d,82;\n0,0;\n0,0;\n' % (root_mb, swap_mb)) utils.execute('sfdisk', '-uM', dev, process_input=stdin_command, run_as_root=True, + attempts=3, check_exit_code=[0]) # avoid "device is busy" time.sleep(3) @@ -287,10 +288,14 @@ class BareMetalDeploy(object): port = q.get('p', '3260') iqn = q['n'] lun = q.get('l', '1') + err_msg = q.get('e') except KeyError as e: start_response('400 Bad Request', [('Content-type', 'text/plain')]) return "parameter '%s' is not defined" % e + if err_msg: + LOG.error('Deploy agent error message: ' + err_msg) + context = nova_context.get_admin_context() d = db.bm_node_get(context, node_id) diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 6f3b55a7e..0a6a9d08d 100755 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -878,7 +878,7 @@ class ComputeManager(manager.SchedulerDependentManager): extra_usage_info = {} - def notify(status, msg=None): + def notify(status, msg=None, **kwargs): """Send a create.{start,error,end} notification.""" type_ = "create.%(status)s" % dict(status=status) info = extra_usage_info.copy() @@ -886,7 +886,7 @@ class ComputeManager(manager.SchedulerDependentManager): msg = "" info['message'] = msg self._notify_about_instance_usage(context, instance, type_, - extra_usage_info=info) + extra_usage_info=info, **kwargs) try: image_meta = self._prebuild_instance(context, instance) @@ -895,10 +895,11 @@ class ComputeManager(manager.SchedulerDependentManager): notify("start") # notify that build is starting - instance = self._build_instance(context, request_spec, - filter_properties, requested_networks, injected_files, - admin_password, is_first_time, node, instance, image_meta) - notify("end", msg=_("Success")) # notify that build is done + instance, network_info = self._build_instance(context, + request_spec, filter_properties, requested_networks, + injected_files, admin_password, is_first_time, node, + instance, image_meta) + notify("end", msg=_("Success"), network_info=network_info) except exception.RescheduledException as e: # Instance build encountered an error, and has been rescheduled. @@ -1028,7 +1029,7 @@ class ComputeManager(manager.SchedulerDependentManager): raise exc_info[0], exc_info[1], exc_info[2] # spawn success - return instance + return instance, network_info def _log_original_error(self, exc_info, instance_uuid): type_, value, tb = exc_info diff --git a/nova/conductor/api.py b/nova/conductor/api.py index 3f955d24f..c681dfb08 100644 --- a/nova/conductor/api.py +++ b/nova/conductor/api.py @@ -109,6 +109,21 @@ class LocalAPI(object): def instance_fault_create(self, context, values): return self._manager.instance_fault_create(context, values) + def instance_group_members_add(self, context, group_uuid, members, + set_delete=False): + return self._manager.instance_group_members_add(context, + group_uuid, + members, + set_delete=set_delete) + + def instance_group_member_delete(self, context, group_uuid, instance_id): + return self._manager.instance_group_member_delete(context, + group_uuid, + instance_id) + + def instance_group_get_all(self, context, group_uuid): + return self._manager.instance_group_get_all(context, group_uuid) + def migration_get(self, context, migration_id): return self._manager.migration_get(context, migration_id) diff --git a/nova/conductor/manager.py b/nova/conductor/manager.py index 6693e7fee..053c44323 100644 --- a/nova/conductor/manager.py +++ b/nova/conductor/manager.py @@ -67,7 +67,7 @@ class ConductorManager(manager.Manager): namespace. See the ComputeTaskManager class for details. """ - RPC_API_VERSION = '1.51' + RPC_API_VERSION = '1.52' def __init__(self, *args, **kwargs): super(ConductorManager, self).__init__(service_name='conductor', @@ -319,6 +319,13 @@ class ConductorManager(manager.Manager): self.db.instance_destroy(context, instance['uuid']) def instance_info_cache_delete(self, context, instance): + # Delete the instance from the instance_group member data + system_meta = self.db.instance_system_metadata_get(context, + instance['uuid']) + instance_group = system_meta.get('instance_group', None) + if instance_group: + self.db.instance_group_member_delete(context, instance_group, + instance['uuid']) self.db.instance_info_cache_delete(context, instance['uuid']) def instance_info_cache_update(self, context, instance, values): @@ -333,6 +340,32 @@ class ConductorManager(manager.Manager): result = self.db.instance_fault_create(context, values) return jsonutils.to_primitive(result) + def instance_group_members_add(self, context, group_uuid, members, + set_delete=False): + result = self.db.instance_group_members_add(context, group_uuid, + members, set_delete=set_delete) + return jsonutils.to_primitive(result) + + def instance_group_member_delete(self, context, group_uuid, instance_id): + result = self.db.instance_group_member_delete(context, + group_uuid, instance_id) + return jsonutils.to_primitive(result) + + def instance_group_get_all(self, context, group_uuid): + instance_group = self.db.instance_group_get(context, group_uuid) + instances = [] + for member in instance_group['members']: + try: + instance = self.db.instance_get_by_uuid(context, member) + if instance: + instances.append(instance) + except exception.InstanceNotFound: + LOG.error(_("Invalid instance %(member)s in instance " + " group %(group)s"), + {'member': member, 'group': group_uuid}) + return jsonutils.to_primitive({'instance_group': instance_group, + 'instances': instances}) + # NOTE(kerrin): This method can be removed in v2.0 of the RPC API. def vol_get_usage_by_time(self, context, start_time): result = self.db.vol_get_usage_by_time(context, start_time) diff --git a/nova/conductor/rpcapi.py b/nova/conductor/rpcapi.py index bb66ca8b2..4e78e29bb 100644 --- a/nova/conductor/rpcapi.py +++ b/nova/conductor/rpcapi.py @@ -102,6 +102,8 @@ class ConductorAPI(nova.openstack.common.rpc.proxy.RpcProxy): 1.50 - Added object_action() and object_class_action() 1.51 - Added the 'legacy' argument to block_device_mapping_get_all_by_instance + 1.52 - Added instance_group_members_add, instance_group_member_delete and + instance_group_get_all """ BASE_RPC_API_VERSION = '1.0' @@ -333,6 +335,22 @@ class ConductorAPI(nova.openstack.common.rpc.proxy.RpcProxy): msg = self.make_msg('instance_fault_create', values=values) return self.call(context, msg, version='1.36') + def instance_group_members_add(self, context, group_uuid, members, + set_delete=False): + msg = self.make_msg('instance_group_members_add', + group_uuid=group_uuid, members=members, + set_delete=set_delete) + return self.call(context, msg, version='1.52') + + def instance_group_member_delete(self, context, group_uuid, instance_id): + msg = self.make_msg('instance_group_member_delete', + group_uuid=group_uuid, instance_id=instance_id) + return self.call(context, msg, version='1.52') + + def instance_group_get_all(self, context, group_uuid): + msg = self.make_msg('instance_group_get_all', group_uuid=group_uuid) + return self.call(context, msg, version='1.52') + def action_event_start(self, context, values): values_p = jsonutils.to_primitive(values) msg = self.make_msg('action_event_start', values=values_p) diff --git a/nova/exception.py b/nova/exception.py index c774b56cc..2b3903e1e 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -1241,6 +1241,19 @@ class CoreAPIMissing(NovaException): message = _("Core API extensions are missing: %(missing_apis)s") +class AgentError(NovaException): + message = _('Error during following call to agent: %(method)s') + + +class AgentTimeout(AgentError): + message = _('Unable to contact guest agent. ' + 'The following call timed out: %(method)s') + + +class AgentNotImplemented(AgentError): + message = _('Agent does not support the call: %(method)s') + + class InstanceGroupNotFound(NotFound): message = _("Instance group %(group_uuid)s could not be found.") diff --git a/nova/locale/bg_BG/LC_MESSAGES/nova.po b/nova/locale/bg_BG/LC_MESSAGES/nova.po index 3db3bc41e..9d1784a0c 100644 --- a/nova/locale/bg_BG/LC_MESSAGES/nova.po +++ b/nova/locale/bg_BG/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-18 19:07+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Bulgarian (Bulgaria) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/bs/LC_MESSAGES/nova.po b/nova/locale/bs/LC_MESSAGES/nova.po index 55da2b69d..bb547fb88 100644 --- a/nova/locale/bs/LC_MESSAGES/nova.po +++ b/nova/locale/bs/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-01-19 20:22+0000\n" "Last-Translator: yazar <zrncescientiae@gmail.com>\n" "Language-Team: Bosnian <bs@li.org>\n" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -673,188 +673,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1466,95 +1466,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1568,7 +1563,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1773,202 +1768,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2414,14 +2409,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2550,136 +2545,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2974,7 +2969,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3071,7 +3066,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3347,7 +3342,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3430,12 +3425,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3566,16 +3561,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3587,7 +3582,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3635,20 +3630,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3669,312 +3664,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4422,7 +4417,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4444,7 +4439,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4523,8 +4518,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4668,304 +4663,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5065,11 +5060,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5194,44 +5189,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5327,47 +5322,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5773,74 +5768,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5934,12 +5930,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6142,11 +6138,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7099,11 +7105,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7294,20 +7300,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7567,15 +7573,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8611,7 +8617,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11287,32 +11293,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11330,9 +11336,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ca/LC_MESSAGES/nova.po b/nova/locale/ca/LC_MESSAGES/nova.po index bf58bd7ec..9e9bacdd8 100644 --- a/nova/locale/ca/LC_MESSAGES/nova.po +++ b/nova/locale/ca/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Catalan " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/cs/LC_MESSAGES/nova.po b/nova/locale/cs/LC_MESSAGES/nova.po index 6d6e100ba..13c60c019 100644 --- a/nova/locale/cs/LC_MESSAGES/nova.po +++ b/nova/locale/cs/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-05-17 20:04+0000\n" "Last-Translator: ZbynÄ›k Schwarz <Unknown>\n" "Language-Team: Czech <cs@li.org>\n" @@ -199,9 +199,9 @@ msgstr "Obdržen neplatný vstup" msgid "Invalid volume" msgstr "Neplatný svazek" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "Neplatná metadata" @@ -697,93 +697,88 @@ msgstr "Dvojice klÃÄů %(name)s nenalezena pro uživatele %(user_id)s" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "Certifikát %(certificate_id)s nenalezen." - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "Služba %(service_id)s nemohla být nalezena." -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "Hostitel %(host)s nemohl být nalezen." -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "Hostitel výpoÄtu %(host)s nemohl být nalezen." -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "Nelze najÃt binárnà soubor %(binary)s v hostiteli %(host)s." -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "Kvóta nemohla být nalezena." -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "Kvóta pro projekt %(project_id)s nemohla být nalezena." -#: nova/exception.py:718 +#: nova/exception.py:714 #, fuzzy, python-format msgid "Quota class %(class_name)s could not be found." msgstr "TÅ™Ãda %(class_name)s nemohla být nalezena: %(exception)s" -#: nova/exception.py:722 +#: nova/exception.py:718 #, fuzzy, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "Kvóta pro projekt %(project_id)s nemohla být nalezena." -#: nova/exception.py:726 +#: nova/exception.py:722 #, fuzzy, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "Uživatel %(user_id)s nemohl být nalezen." -#: nova/exception.py:730 +#: nova/exception.py:726 #, fuzzy, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "RozÅ¡ÃÅ™ený zdroj: %s" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "BezpeÄnostnà skupina %(security_group_id)s nenà nalezena." -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" "BezpeÄnostnà skupina %(security_group_id)s nenà nalezena v projektu " "%(project_id)s." -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "BezpeÄnostnà skupina s pravidlem %(rule_id)s nenalezena." -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " @@ -792,7 +787,7 @@ msgstr "" "BezpeÄnostnà skupina %(security_group_id)s je již pÅ™idružena k instanci " "%(instance_id)s" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " @@ -801,37 +796,37 @@ msgstr "" "BezpeÄnostnà skupina %(security_group_id)s nenà pÅ™idružena k instanci " "%(instance_id)s" -#: nova/exception.py:757 +#: nova/exception.py:753 #, fuzzy, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "BezpeÄnostnà skupina s pravidlem %(rule_id)s nenalezena." -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "PÅ™esun %(migration_id)s nemohl být nalezen." -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "PÅ™esun nenalezen v instanci %(instance_id)s se stavem %(status)s." -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "Zásoba konzole %(pool_id)s nemohla být nalezena." -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " @@ -840,17 +835,17 @@ msgstr "" "Zásoba konzole typu %(console_type)s pro výpoÄetnÃho hostitele " "%(compute_host)s v hostitele proxy %(host)s nemohla být nalezena." -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "Konzole %(console_id)s nemohla být nalezena." -#: nova/exception.py:794 +#: nova/exception.py:790 #, fuzzy, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "Konzole pro instanci %(instance_id)s nemohla být nalezena." -#: nova/exception.py:798 +#: nova/exception.py:794 #, fuzzy, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " @@ -859,36 +854,41 @@ msgstr "" "Konzole pro instanci %(instance_id)s v zásobÄ› %(pool_id)s nemohla být " "nalezena." -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "Neplatná konzole typu %(console_type)s " -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "Instance typu %(instance_type_id)s nemohla být nalezena." -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "Instance typu s názvem %(instance_type_name)s nemohla být nalezena." -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "Konfigurace %(flavor_id)s nemohla být nalezena." -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "skupina svazku %s neexistuje" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1511,95 +1511,90 @@ msgstr "Nelze zÃskat IP mÃstnÃho spojenà %(interface)s :%(ex)s" msgid "Invalid backend: %s" msgstr "Neplatná podpůrná vrstva: %s" -#: nova/utils.py:436 -#, fuzzy, python-format -msgid "Unknown byte multiplier: %s" -msgstr "Neznámý základnà soubor: %s" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "OÄekáván objekt typu: %s" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "Neplatný server_string: %s" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "timefunc: '%(name)s' trvalo %(total_time).2f sek" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, fuzzy, python-format msgid "Reloading cached file %s" msgstr "Odstraňovánà základnÃho souboru: %s" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, fuzzy, python-format msgid "Could not remove tmpdir: %s" msgstr "Nelze odstranit kontejner: %s" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, fuzzy, python-format msgid "%s is not a string or unicode" msgstr "Název serveru nenà řetÄ›zec nebo unicode" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, fuzzy, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "Dvojice klÃÄů musà být dlouhá 1 až 255 znaků." -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, fuzzy, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "%(name)s spuÅ¡tÄ›no v %(host)s:%(port)s" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Nelze najÃt adresu %r" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Nelze najÃt adresu %r" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Nelze najÃt adresu %r" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "Zastavovánà serveru WSGI." -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "Server WSGI byl zastaven." -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "MusÃte zavést __call__" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, fuzzy, python-format msgid "Loading app %(name)s from %(path)s" msgstr "Nelze naÄÃst aplikaci vloženà '%(name)s' z %(path)s" @@ -1613,7 +1608,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1823,215 +1818,215 @@ msgstr "Toto pravidlo již existuje ve skupinÄ› %s" msgid "Get console output for instance %s" msgstr "ZÃskat výstup konzole pro instanci %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "VytvoÅ™it svazek ze snÃmku %s" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "VytvoÅ™it svazek o %s GB" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 #, fuzzy msgid "Delete Failed" msgstr "VytvoÅ™enà selhalo" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "PÅ™ipojit svazek %(volume_id)s k instanci %(instance_id)s na %(device)s" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 #, fuzzy msgid "Attach Failed." msgstr "VytvoÅ™enà selhalo" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Odpojit svazek %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "Odpojit svazek %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "vlastnost nenà podporována: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "svz = %s\n" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "PÅ™idÄ›lit adresu" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 #, fuzzy msgid "No more floating IPs available" msgstr "Žádné dalšà plovoucà ip nejsou dostupné." -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Uvolnit adresu %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 #, fuzzy msgid "Unable to release IP Address." msgstr "Nelze najÃt adresu %r" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "PÅ™idÄ›lit adresu %(public_ip)s k instanci %(instance_id)s" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "Nelze najÃt adresu %r" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, fuzzy, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "existuje mnoho pevných ip, použita je prvnÃ: %s" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 #, fuzzy msgid "Floating ip is already associated." msgstr "Plovoucà ip %(address)s je pÅ™idružena." -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 #, fuzzy msgid "l3driver call to add floating ip failed." msgstr "Je dostupných nula plovoucÃch ip." -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "Nelze najÃt adresu %r" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "OddÄ›lit adresu %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 #, fuzzy msgid "Floating ip is not associated." msgstr "Plovoucà ip %(address)s nenà pÅ™idružena." -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "Obraz musà být dostupný" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "BUde spuÅ¡tÄ›no ukonÄovánà insatncÃ" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Restratovat instanci %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "Instance budou zastaveny" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "Instance budou spuÅ¡tÄ›ny" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "ZruÅ¡enà registrace obrazu %s" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "Obraz %(image_location)s registrován s id %(image_id)s" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "uživatel nebo skupina nebyly zadány" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "podporována je pouze skupina \"all\"" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "operation_type musà být add nebo remove" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "Aktualizace publicity obrazu %s" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "Nelze zastavit instanci za %d sek" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 #, fuzzy msgid "Expecting a list of resources" msgstr "ZÃskávánà seznamu instancÃ" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "instance - %s nenà pÅ™Ãtomno" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 #, fuzzy msgid "Expecting a list of tagSets" msgstr "ZÃskávánà seznamu instancÃ" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 #, fuzzy msgid "Invalid CIDR" msgstr "Neplatná data jednotky" @@ -2486,14 +2481,14 @@ msgstr "Hostitel %(host)s nemohl být nalezen." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "Instance nemohla být nalezena" @@ -2626,143 +2621,143 @@ msgstr "Nelze najÃt požadovaný obraz" msgid "Invalid key_name provided." msgstr "Zadán neplatný název_klÃÄe." -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "id nemůže být None" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "id nemůže být None" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "Instanci nebyla zmÄ›nÄ›na velikost." -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "Instance %(instance_id)s nemohla být nastavena." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "Argument 'type' pro restart nenà HARD Äi SOFT" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "Chybà argument 'type' pro restart" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "Nelze najÃt požadovanou konfiguraci." -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 #, fuzzy msgid "Resize requires a flavor change." msgstr "Resize vyžaduje zmÄ›nu velikosti." -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "Instance %(instance_id)s nemohla být nastavena." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "%s je platný název instance" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "Chybà vlastnost imageRef" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "Zadáno neplatné imageRef." -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "Chybà vlastnost flavorRef" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "Nebylo zadáno adminPass" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "Neplatné adminPass" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Nelze restartovat instanci" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "Nelze zpracovat metadata dvojic hodnot/klÃÄů." -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "Požadavek na zmÄ›nu velikosti má neplatnou vlastnost 'flavorRef'." -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "Požadavek na zmÄ›nu velikosti vyžaduje vlastnost 'flavorRef'." -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "Neplatné tÄ›lo požadavku" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "Nelze zpracovat imageRef z požadavku." -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "Nelze najÃt obraz ke znovu sestavenÃ" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "Objekt createImage cyžaduje vlastnost name" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, fuzzy, python-format msgid "Removing options '%s' from query" msgstr "Odstraňovánà voleb '%(unk_opt_str)s' z fronty" @@ -3071,7 +3066,7 @@ msgstr "Chyba v pÅ™esunu %s" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3176,7 +3171,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "Plovoucà ip %(address)s nenà pÅ™idružena." #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3463,7 +3458,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 #, fuzzy msgid "Unknown service" msgstr "neznámá chyby pÅ™ipojenà hosta" @@ -3547,12 +3542,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, fuzzy, python-format msgid "Running _create_extension_point for %s" msgstr "Volánà továrny rozÅ¡ÃÅ™enà %s" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3684,16 +3679,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "Svazek nenà nalezen v instanci %(instance_id)s." -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3705,7 +3700,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3753,20 +3748,20 @@ msgstr "prvek nenà podÅ™azený" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3789,326 +3784,326 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "obdrženo: %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "Chyba DB: %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "Reset sÃtÄ›" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "poÄáteÄnà adresa" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 #, fuzzy msgid "No fixed IP found." msgstr "Bylo nalezeno nula pevných ip." -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, fuzzy, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "K instanci nejsou pÅ™idruženy žádné pevné ip" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "Plovoucà ip %(address)s je pÅ™idružena." -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "id" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "IPv4" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "IPv6" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "poÄáteÄnà adresa" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "DNS1" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "DNS2" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "VlanID" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "projekt" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "uuid" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "SÃÅ¥ nenalezena" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 #, fuzzy msgid "UUID is required to delete Quantum Networks" msgstr "%(req)s je vyžadováno pro vytvoÅ™enà sÃtÄ›." -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "zastavit instanci %r" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "Služba %(service_id)s nemohla být nalezena." -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "Služba %(service_id)s nemohla být nalezena." -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "NeoÄekávaná chyba: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 #, fuzzy msgid "PROJECT" msgstr "projekt" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 #, fuzzy msgid "Must supply valid parameters to create instance_type" msgstr "Nelze vytvoÅ™it typ instance" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "instance - %s nenà pÅ™Ãtomno" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 #, fuzzy msgid "Unknown error" msgstr "neznámá chyby pÅ™ipojenà hosta" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, fuzzy, python-format msgid "%s created" msgstr "Tabulka |%s| nenà vytvoÅ™ena!" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 #, fuzzy msgid "Valid instance type name is required" msgstr "%s je platný název instance" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "Chyba DB: %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "typ je = %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4583,7 +4578,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4607,7 +4602,7 @@ msgstr "Chyba DB: %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4688,8 +4683,8 @@ msgstr "ukonÄovánà bdm %s" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "%s. Nastavovánà stavu vm instance na ERROR" @@ -4846,149 +4841,149 @@ msgstr "instance %s: ruÅ¡enà záchrany" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "Nastavovánà instance %(instance_uuid)s do stavu ERROR" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "Instance nemá svazek." -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "cÃl stejný jako zdroj!" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 #, fuzzy msgid "Pausing" msgstr "AktualizovánÃ!" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "instance %s: zÃskávánà diagnostik" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "Reset sÃtÄ›" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 #, fuzzy msgid "Inject network info" msgstr "instance %s: vkládánà informacà o sÃti" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "network_info vkládá: |%s|" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "ZÃskat výstup konzole pro instanci %s" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 #, fuzzy msgid "Getting vnc console" msgstr "instance %s: zÃskávánà konzole vnc" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "instance %s: zÃskávánà konzole vnc" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "ZavádÄ›nà pomocà svazku %(volume_id)s ve %(mountpoint)s" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "PÅ™ipojovánà svazku %(volume_id)s do %(mountpoint)s" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, fuzzy, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "ZavádÄ›nà pomocà svazku %(volume_id)s ve %(mountpoint)s" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "PÅ™ipojovánà svazku %(volume_id)s do %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "Odpojovánà svazku %(volume_id)s z bodu pÅ™ipojenà %(mp)s" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Odpojovánà svazku z neznámé instance %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "PÅ™ipojovánà svazku %(volume_id)s do %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, fuzzy, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "pÅ™idÄ›lovánà sÃtÄ› pro instanci %s" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 #, fuzzy msgid "_post_live_migration() is started.." msgstr "zahájen pÅ™esun po spuÅ¡tÄ›nÃ." -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." @@ -4996,21 +4991,21 @@ msgstr "" "Můžete vidÄ›t tuto chybu \"libvirt: QEMU error: Domain not found: no " "domain with matching name.\" Tuto chybu můžete bezpeÄnÄ› ignorovat." -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 #, fuzzy msgid "Post operation of migration started" msgstr "SpuÅ¡tÄ›na operace po migraci" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Nelze zÃskat metadata pro ip: %s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " @@ -5019,64 +5014,64 @@ msgstr "" "Nalezeno %(migration_count)d nepotvrzených pÅ™esunů starÅ¡Ãch než " "%(confirm_window)d vteÅ™in" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, fuzzy, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "VypÃnánà VM pro instanci %(instance_uuid)s" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 #, fuzzy msgid "In ERROR state" msgstr "Uzel je v neznámém chybovém stavu." -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "Aktualizace mezipamÄ›ti využità šÃÅ™ky pásma" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Aktualizace mezipamÄ›ti využità šÃÅ™ky pásma" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "Aktualizace stavu hostitele" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " @@ -5085,86 +5080,86 @@ msgstr "" "Nalezeno %(num_db_instances)s v databázi a %(num_vm_instances)s na " "hypervizoru." -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "Instance nenà zapnuta" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 #, fuzzy msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "FLAGS.reclaim_instance_interval <= 0, pÅ™ekskovánÃ..." -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "Znovu zÃskávánà smazané instance" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Zaznamovánà ovladaÄe svazku: %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, fuzzy, python-format msgid "No service record for host %s" msgstr "Žádná služba pro ID výpoÄtu %s" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "Nastavovánà instance %(instance_uuid)s do stavu ERROR" @@ -5266,11 +5261,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "Nezadán žádný poÄÃtaÄový hostitel" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "Nelze najÃt hostitele pro instanci %s" @@ -5400,44 +5395,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "Nerozpoznaná hodnota read_deleted '%s'" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "instance %s: zachránÄ›na" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "instance %s: zachránÄ›na" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "instance %s: zachránÄ›na" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "instance %s: zachránÄ›na" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "instance %s: zachránÄ›na" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5535,47 +5530,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "Stahovánà obrazu %s ze serveru obrazu glance" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "Nelze stáhnout %(image_location)s do %(image_path)s" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "Nelze deÅ¡ifrovat %(image_location)s do %(image_path)s" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "Nelze rozbalit %(image_location)s do %(image_path)s" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "Nelze nahrát %(image_location)s do %(image_path)s" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "Nelze deÅ¡ifrovat soukromý klÃÄ: %s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "Nelze deÅ¡ifrovat vektor zavedenÃ: %s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "Nelze deÅ¡ifrovat soubor obrazu %(image_file)s: %(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "NebezpeÄné názvy souboru v obrazu" @@ -6000,76 +5995,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "podsÃtÄ› v4 jsou vyžadovány pro zastaralé nw_info" -#: nova/network/quantumv2/__init__.py:67 -#, fuzzy -msgid "quantum authentication failed" -msgstr "Chyba ověřenÃ" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" +msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, fuzzy, python-format msgid "allocate_for_instance() for %s" msgstr "pÅ™idÄ›lovánà sÃtÄ› pro instanci %s" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "pÅ™idÄ›lovánà sÃtÄ› pro instanci %s" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Hostitel nenalezen" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, fuzzy, python-format msgid "deallocate_for_instance() for %s" msgstr "oddÄ›lenà sÃtÄ› pro instanci |%s|" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, fuzzy, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "Nelze smazat svazek v db" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, fuzzy, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "Nelze smazat svazek v db" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, fuzzy, python-format msgid "get_instance_nw_info() for %s" msgstr "Informace o sÃti instance: |%s|" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, fuzzy, python-format msgid "validate_networks() for %s" msgstr "Å patný formát sÃtÄ›" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "Plovoucà ip nenà nalezena pro id %(id)s." @@ -6171,12 +6166,12 @@ msgstr "Chyba pÅ™i nastavovánà hesla správce" msgid "Invalid version string" msgstr "Neplatný server_string: %s" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6382,11 +6377,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, fuzzy, python-format +msgid "Unknown byte multiplier: %s" +msgstr "Neznámý základnà soubor: %s" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "VyjÃmka DB zabalena." @@ -7360,12 +7365,12 @@ msgstr "Po vynuceném ukonÄenà instancÃ: %s" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 #, fuzzy msgid "spawn error" msgstr "neznámá chyby pÅ™ipojenà hosta" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7564,20 +7569,20 @@ msgstr "PÅ™idávánà pravidla bezpeÄnostnà skupiny: %r" msgid "Adding provider rule: %s" msgstr "PÅ™idávánà pravidla poskytovatele: %s" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "zpracovánà 'qemu-img info' selhalo." -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "fmt=%(fmt)s zálohováno: %(backing_file)s" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "PÅ™evedeno na prosté, ale formát je nynà %s" @@ -7843,15 +7848,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8915,7 +8920,7 @@ msgstr "Neůze najÃt vbd pro vdi %s" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11776,32 +11781,32 @@ msgstr "Neznámý základnà soubor: %s" msgid "Error in handshake: %s" msgstr "Chyba pÅ™i zahájenà komunikace: %s" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "Neplatný požadavek: %s" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "Požadavek: %s" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "Proveden požadavek s chybÄ›jÃcà známkou: %s" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "Proveden požadavek s neplatnou známkou: %s" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "NeoÄekávaná chyba: %s" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "SpouÅ¡tÄ›nà uzlu nova-xvpvncproxy (verze %s)" @@ -11821,9 +11826,9 @@ msgstr "stav musà být dostupný" msgid "status must be 'available'" msgstr "stav musà být dostupný" -#~ msgid "Cannot reboot instance: %s" -#~ msgstr "" +#~ msgid "Certificate %(certificate_id)s not found." +#~ msgstr "Certifikát %(certificate_id)s nenalezen." -#~ msgid "No Volume Connector found." -#~ msgstr "" +#~ msgid "quantum authentication failed" +#~ msgstr "Chyba ověřenÃ" diff --git a/nova/locale/da/LC_MESSAGES/nova.po b/nova/locale/da/LC_MESSAGES/nova.po index 42b928780..bc66f7c47 100644 --- a/nova/locale/da/LC_MESSAGES/nova.po +++ b/nova/locale/da/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\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" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -673,188 +673,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1466,95 +1466,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1568,7 +1563,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1773,202 +1768,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2414,14 +2409,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2550,136 +2545,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2974,7 +2969,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3071,7 +3066,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3347,7 +3342,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3430,12 +3425,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3566,16 +3561,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3587,7 +3582,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3635,20 +3630,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3669,312 +3664,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4422,7 +4417,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4444,7 +4439,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4523,8 +4518,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4668,304 +4663,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5065,11 +5060,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5194,44 +5189,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5327,47 +5322,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5773,74 +5768,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5934,12 +5930,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6142,11 +6138,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7099,11 +7105,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7294,20 +7300,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7567,15 +7573,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8611,7 +8617,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/de/LC_MESSAGES/nova.po b/nova/locale/de/LC_MESSAGES/nova.po index 8a667ae45..aa9903822 100644 --- a/nova/locale/de/LC_MESSAGES/nova.po +++ b/nova/locale/de/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2011-08-23 11:23+0000\n" "Last-Translator: Thierry Carrez <thierry.carrez+lp@gmail.com>\n" "Language-Team: German <de@li.org>\n" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Nicht möglich volume %s zufinden" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Nicht möglich volume %s zufinden" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Nicht möglich volume %s zufinden" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,203 +1769,203 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "Instanz %s: Rettung" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2416,14 +2411,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2552,137 +2547,137 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "Instanz %s: Rettung" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2979,7 +2974,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3077,7 +3072,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3353,7 +3348,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3436,12 +3431,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3573,16 +3568,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3594,7 +3589,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3642,20 +3637,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3676,313 +3671,313 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "Instanz %s: Rettung" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4433,7 +4428,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4455,7 +4450,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4534,8 +4529,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4681,307 +4676,307 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "Instanz %s: Rettung" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Nicht möglich Volumen zur Instanze %s hinzuzufügen" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Nicht möglich volume %s zufinden" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "Instanz %s: Rettung" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5081,11 +5076,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5210,44 +5205,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5343,47 +5338,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5789,75 +5784,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Instanz %s pausiert" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5951,12 +5947,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6160,11 +6156,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7117,11 +7123,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7312,20 +7318,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7590,15 +7596,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8636,7 +8642,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11318,32 +11324,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11361,9 +11367,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/en_AU/LC_MESSAGES/nova.po b/nova/locale/en_AU/LC_MESSAGES/nova.po index 8cb488dbe..e01cb783b 100644 --- a/nova/locale/en_AU/LC_MESSAGES/nova.po +++ b/nova/locale/en_AU/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2011-10-21 11:27+0000\n" "Last-Translator: Tom Fifield <Unknown>\n" "Language-Team: English (Australia) <en_AU@li.org>\n" @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -679,188 +679,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "volume group %s doesn't exist" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1473,95 +1473,90 @@ msgstr "Couldn't get Link Local IP of %(interface)s :%(ex)s" msgid "Invalid backend: %s" msgstr "Invalid backend: %s" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Unable to find SR from VBD %s" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Unable to find SR from VBD %s" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Unable to find SR from VBD %s" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "You must implement __call__" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1575,7 +1570,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1783,206 +1778,206 @@ msgstr "This rule already exists in group %s" msgid "Get console output for instance %s" msgstr "Get console output for instance %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Create volume of %s GB" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Detach volume %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "Detach volume %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "attribute not supported: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Allocate address" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Release address %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "Associate address %(public_ip)s to instance %(instance_id)s" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "Disassociate address %s" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "Disassociate address %s" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "Disassociate address %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "Going to start terminating instances" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Reboot instance %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "De-registering image %s" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "Registered image %(image_location)s with id %(image_id)s" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "user or group not specified" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "only group \"all\" is supported" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "operation_type must be add or remove" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "Updating image %s publicity" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "instance %s: rescued" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2429,14 +2424,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2565,141 +2560,141 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "Mountpoint cannot be translated: %s" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "Mountpoint cannot be translated: %s" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "instance %s: booted" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "instance %s: rescued" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Going to start terminating instances" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -3000,7 +2995,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3099,7 +3094,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "Associate address %(public_ip)s to instance %(instance_id)s" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3381,7 +3376,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3464,12 +3459,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3601,16 +3596,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "Associate address %(public_ip)s to instance %(instance_id)s" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3622,7 +3617,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3670,20 +3665,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3704,320 +3699,320 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "received %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "Caught error: %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "setting network host" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "start address" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "group %s already exists" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "start address" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "setting network host" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Reboot instance %r" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "Unexpected error raised: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "instance %s: rescued" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "Caught error: %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "Caught error: %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4477,7 +4472,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4500,7 +4495,7 @@ msgstr "Caught error: %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4581,8 +4576,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4732,314 +4727,314 @@ msgstr "instance %s: unrescuing" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "instance %s: snapshotting" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "instance %s: retrieving diagnostics" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "setting network host" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 #, fuzzy msgid "Inject network info" msgstr "setting network host" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "Get console output for instance %s" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 #, fuzzy msgid "Getting vnc console" msgstr "Adding console" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "Adding console" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Detaching volume from unknown instance %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Failed to get metadata for ip: %s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Deleting user %s" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "instance %s: booted" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Deleting user %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5139,11 +5134,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5269,44 +5264,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5402,47 +5397,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "Failed to decrypt private key: %s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "Failed to decrypt initialisation vector: %s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "Failed to decrypt image file %(image_file)s: %(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5852,75 +5847,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "Get console output for instance %s" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "instance %s: booted" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "setting network host" @@ -6017,12 +6013,12 @@ msgstr "Error starting xvp: %s" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6225,11 +6221,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7187,11 +7193,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7383,20 +7389,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7661,15 +7667,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8723,7 +8729,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11432,32 +11438,32 @@ msgstr "NotFound raised: %s" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11475,9 +11481,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/en_GB/LC_MESSAGES/nova.po b/nova/locale/en_GB/LC_MESSAGES/nova.po index 1fc3b3f81..c18156ebb 100644 --- a/nova/locale/en_GB/LC_MESSAGES/nova.po +++ b/nova/locale/en_GB/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-03-30 11:10+0000\n" "Last-Translator: Anthony Harrington <untaintableangel@hotmail.co.uk>\n" "Language-Team: English (United Kingdom) <en_GB@li.org>\n" @@ -193,9 +193,9 @@ msgstr "Invalid input received" msgid "Invalid volume" msgstr "Invalid volume" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -679,188 +679,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, fuzzy, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "Instance %(instance_id)s is not running." -#: nova/exception.py:798 +#: nova/exception.py:794 #, fuzzy, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "Instance %(instance_id)s is not running." -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "Invalid content type %(content_type)s." -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1472,95 +1472,90 @@ msgstr "Couldn't get Link Local IP of %(interface)s :%(ex)s" msgid "Invalid backend: %s" msgstr "Invalid backend: %s" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Unable to locate volume %s" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Unable to locate volume %s" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Unable to locate volume %s" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1574,7 +1569,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1779,203 +1774,203 @@ msgstr "" msgid "Get console output for instance %s" msgstr "Get console output for instance %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "instance %s: resuming" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 #, fuzzy msgid "Invalid CIDR" msgstr "Invalid cidr %(cidr)s." @@ -2423,14 +2418,14 @@ msgstr "Instance %(instance_id)s is not running." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2559,139 +2554,139 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "Instance %(instance_id)s is not running." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "Instance %(instance_id)s is not running." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "Invalid volume" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2990,7 +2985,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3088,7 +3083,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3365,7 +3360,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3448,12 +3443,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3585,16 +3580,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "Instance %(instance_id)s is not running." -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3606,7 +3601,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3654,20 +3649,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3688,315 +3683,315 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "instance %s: reset network" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Rebooting instance %s" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "instance %s: resuming" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4449,7 +4444,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4471,7 +4466,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4551,8 +4546,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4700,311 +4695,311 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "Invalid instance type %(instance_type)s." -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "instance %s: snapshotting" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "instance %s: retrieving diagnostics" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "instance %s: reset network" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "Get console output for instance %s" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Detaching volume from unknown instance %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Re-exporting %s volumes" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "instance %s: snapshotting" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Re-exporting %s volumes" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "Invalid instance type %(instance_type)s." @@ -5104,11 +5099,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5234,44 +5229,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5367,47 +5362,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5814,75 +5809,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "Invalid instance type %(instance_type)s." -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "instance %s: suspending" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5976,12 +5972,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6185,11 +6181,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "DB exception wrapped." @@ -7148,11 +7154,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7343,20 +7349,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7621,15 +7627,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8679,7 +8685,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11373,32 +11379,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11416,9 +11422,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/en_US/LC_MESSAGES/nova.po b/nova/locale/en_US/LC_MESSAGES/nova.po index fa2a9e8b0..86271c179 100644 --- a/nova/locale/en_US/LC_MESSAGES/nova.po +++ b/nova/locale/en_US/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-01-21 18:28+0000\n" "Last-Translator: Jeremy Stanley <fungi@yuggoth.org>\n" "Language-Team: en_US <LL@li.org>\n" @@ -196,9 +196,9 @@ msgstr "Invalid input received" msgid "Invalid volume" msgstr "Invalid volume" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "Invalid metadata" @@ -697,35 +697,30 @@ msgstr "Keypair %(name)s not found for user %(user_id)s" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "Certificate %(certificate_id)s not found." - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "Service %(service_id)s could not be found." -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "Host %(host)s could not be found." -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "Compute host %(host)s could not be found." -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "Could not find binary %(binary)s on host %(host)s." -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "Invalid reservation expiration %(expire)s." -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " @@ -734,56 +729,56 @@ msgstr "" "Change would make usage less than 0 for the following resources: " "%(unders)s" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "Quota could not be found" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "Unknown quota resources %(unknown)s." -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "Quota for project %(project_id)s could not be found." -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "Quota class %(class_name)s could not be found." -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "Quota usage for project %(project_id)s could not be found." -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "Quota reservation %(uuid)s could not be found." -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "Quota exceeded for resources: %(overs)s" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "Security group %(security_group_id)s not found." -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "Security group %(security_group_id)s not found for project %(project_id)s." -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "Security group with rule %(rule_id)s not found." -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " @@ -792,7 +787,7 @@ msgstr "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " @@ -801,37 +796,37 @@ msgstr "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" -#: nova/exception.py:757 +#: nova/exception.py:753 #, fuzzy, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "Security group with rule %(rule_id)s not found." -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "Migration %(migration_id)s could not be found." -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "Migration not found for instance %(instance_id)s with status %(status)s." -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "Console pool %(pool_id)s could not be found." -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " @@ -840,17 +835,17 @@ msgstr "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "Console %(console_id)s could not be found." -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "Console for instance %(instance_uuid)s could not be found." -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " @@ -859,36 +854,41 @@ msgstr "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "Invalid console type %(console_type)s " -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "Instance type %(instance_type_id)s could not be found." -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "Instance type with name %(instance_type_name)s could not be found." -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "Flavor %(flavor_id)s could not be found." -#: nova/exception.py:820 +#: nova/exception.py:816 #, fuzzy, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "Flavor access not found for %(flavor_id) / %(project_id) combination." -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "pool %s doesn't exist" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1523,95 +1523,90 @@ msgstr "Couldn't get Link Local IP of %(interface)s :%(ex)s" msgid "Invalid backend: %s" msgstr "Invalid backend: %s" -#: nova/utils.py:436 -#, fuzzy, python-format -msgid "Unknown byte multiplier: %s" -msgstr "Unknown base file: %s" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "Expected object of type: %s" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "Invalid server_string: %s" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "timefunc: '%(name)s' took %(total_time).2f secs" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "Reloading cached file %s" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "Could not remove tmpdir: %s" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, fuzzy, python-format msgid "%s is not a string or unicode" msgstr "Server name is not a string or unicode" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, fuzzy, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "Server name must be less than 256 characters." -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "%(name)s listening on %(host)s:%(port)s" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Unable to find address %r" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Unable to find address %r" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Unable to find address %r" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "Stopping WSGI server." -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "WSGI server has stopped." -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "You must implement __call__" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "Loading app %(name)s from %(path)s" @@ -1625,7 +1620,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "Sourcing roles from deprecated X-Role HTTP header" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "Request is too large." @@ -1833,165 +1828,165 @@ msgstr "%s - This rule already exists in group" msgid "Get console output for instance %s" msgstr "Get console output for instance %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "Create volume from snapshot %s" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Create volume of %s GB" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "Delete Failed" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "Attach Failed." -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Detach volume %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "Detach Volume Failed." -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "attribute not supported: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "vol = %s\n" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Allocate address" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "No more floating IPs available" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Release address %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "Unable to release IP Address." -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "Associate address %(public_ip)s to instance %(instance_id)s" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "Unable to associate IP Address, no fixed_ips." -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "multiple fixed_ips exist, using the first: %s" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "Floating ip is already associated." -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "l3driver call to add floating ip failed." -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "Error, unable to associate floating ip." -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "Disassociate address %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "Floating ip is not associated." -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "Cannot disassociate auto assigned floating ip" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "Image must be available" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "Going to start terminating instances" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Reboot instance %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "Going to stop instances" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "Going to start instances" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "De-registering image %s" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "imageLocation is required" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "Registered image %(image_location)s with id %(image_id)s" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "user or group not specified" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "only group \"all\" is supported" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "operation_type must be add or remove" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "Updating image %s publicity" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "Not allowed to modify attributes for image %s" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " @@ -2000,40 +1995,40 @@ msgstr "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "Couldn't stop instance with in %d sec" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "image of %(instance)s at %(now)s" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 #, fuzzy msgid "Expecting a list of resources" msgstr "Getting list of instances" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "instance not present" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 #, fuzzy msgid "Expecting a list of tagSets" msgstr "Getting list of instances" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "Invalid CIDR" @@ -2487,14 +2482,14 @@ msgstr "Host '%s' could not be found." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "Instance could not be found" @@ -2623,141 +2618,141 @@ msgstr "Can not find requested image" msgid "Invalid key_name provided." msgstr "Invalid key_name provided." -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "HostId cannot be updated." -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "HostId cannot be updated." -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "Instance has not been resized." -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "Instance %(instance_id)s could not be found." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "Argument 'type' for reboot is not HARD or SOFT" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "Missing argument 'type' for reboot" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "Unable to locate requested flavor." -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "Resize requires a flavor change." -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "Instance %(instance_id)s could not be found." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "%s is a valid instance name" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "Missing imageRef attribute" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "Invalid imageRef provided." -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "Missing flavorRef attribute" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "No adminPass was specified" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "Invalid adminPass" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Failed to soft reboot instance." -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "Unable to parse metadata key/value pairs." -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "Resize request has invalid 'flavorRef' attribute." -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "Resize requests require 'flavorRef' attribute." -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "Invalid request body" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "Could not parse imageRef from request." -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "Cannot find image for rebuild" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "createImage entity requires name attribute" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, fuzzy, python-format msgid "Removing options '%s' from query" msgstr "Removing options '%(unk_opt_str)s' from query" @@ -3065,7 +3060,7 @@ msgstr "Error in migrate %s" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3164,7 +3159,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "Floating ip %(address)s is not associated." #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3451,7 +3446,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 #, fuzzy msgid "Unknown service" msgstr "unknown guestmount error" @@ -3535,12 +3530,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, fuzzy, python-format msgid "Running _create_extension_point for %s" msgstr "Calling extension factory %s" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "Instance has had its instance_type removed from the DB" @@ -3672,16 +3667,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "Destroying VDIs for Instance %(instance_uuid)s" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3693,7 +3688,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3741,20 +3736,20 @@ msgstr "element is not a child" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3777,326 +3772,326 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "received %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "DB error: %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "Reset network" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "start address" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 #, fuzzy msgid "No fixed IP found." msgstr "Zero fixed ips could be found." -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, fuzzy, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "No fixed ips associated to instance" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "Floating ip %(address)s already exists." -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "id" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "IPv4" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "IPv6" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "start address" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "DNS1" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "DNS2" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "VlanID" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "project" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "uuid" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "Network not found" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 #, fuzzy msgid "UUID is required to delete Quantum Networks" msgstr "%(req)s is required to create a network." -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "stop instance" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "Service %(service_id)s could not be found." -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "Service %(service_id)s could not be found." -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "Unexpected error: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 #, fuzzy msgid "PROJECT" msgstr "project" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 #, fuzzy msgid "Must supply valid parameters to create instance_type" msgstr "Unable to create instance type" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "instance not present" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 #, fuzzy msgid "Unknown error" msgstr "unknown guestmount error" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, fuzzy, python-format msgid "%s created" msgstr "Table |%s| not created!" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 #, fuzzy msgid "Valid instance type name is required" msgstr "%s is a valid instance name" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "DB error: %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, fuzzy, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "%(key)s with value %(value)s failed validator %(name)s" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "hyperv vm state: %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4563,7 +4558,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4586,7 +4581,7 @@ msgstr "DB error: %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "Error trying to reschedule" @@ -4667,8 +4662,8 @@ msgstr "terminating bdm %s" msgid "Ignoring volume cleanup failure due to %s" msgstr "Ignoring volume cleanup failure due to %s" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "%s. Setting instance vm_state to ERROR" @@ -4819,82 +4814,82 @@ msgstr "Unrescuing" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "Setting instance to %(state)s state." -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "Instance has no volume." -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "destination same as source!" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "Migrating" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "Pausing" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "Unpausing" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "Retrieving diagnostics" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "Resuming" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "Reset network" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "Inject network info" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "network_info to inject: |%s|" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "Get console output" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "Getting vnc console" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "Getting vnc console" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "Booting with volume %(volume_id)s at %(mountpoint)s" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "Attaching volume %(volume_id)s to %(mountpoint)s" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " @@ -4903,59 +4898,59 @@ msgstr "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "Failed to attach volume %(volume_id)s at %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "Detach volume %(volume_id)s from mountpoint %(mp)s" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "Detaching volume from unknown instance" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Faild to detach volume %(volume_id)s from %(mp)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, fuzzy, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "allocate_for_instance() for %s" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "_post_live_migration() is started.." -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." @@ -4963,20 +4958,20 @@ msgstr "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "Post operation of migration started" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Failed to get info for disk %s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "Updated the info_cache for instance" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " @@ -4985,12 +4980,12 @@ msgstr "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "Setting migration %(migration_id)s to error: %(reason)s" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " @@ -4999,26 +4994,26 @@ msgstr "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "In ERROR state" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, fuzzy, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "In states %(vm_state)s/%(task_state)s, notRESIZED/None" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " @@ -5027,25 +5022,25 @@ msgstr "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "Failed to generate usage audit for instance on host %s" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "Updating bandwidth usage cache" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Updating bandwidth usage cache" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "Updating host status" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " @@ -5054,11 +5049,11 @@ msgstr "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "During sync_power_state the instance has a pending task. Skip." -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" @@ -5067,76 +5062,76 @@ msgstr "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "Instance shutdown by itself. Calling the stop API." -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "error during stop() in sync_power_state." -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 #, fuzzy msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "Instance is paused or suspended unexpectedly. Calling the stop API." -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 #, fuzzy msgid "Instance is paused unexpectedly. Ignore." msgstr "Instance is paused or suspended unexpectedly. Calling the stop API." -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "Instance is not stopped. Calling the stop API." -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "Instance is not (soft-)deleted." -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 #, fuzzy msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "FLAGS.reclaim_instance_interval <= 0, skipping..." -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "Reclaiming deleted instance" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Loading compute driver '%s'" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "No service record for host %s" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "Setting instance to %(state)s state." @@ -5246,11 +5241,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "Missing keys: %s" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "No compute host specified" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "Unable to find host for Instance %s" @@ -5380,44 +5375,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "Unrecognized read_deleted value '%s'" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "instance %s: rescued" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "Change will make usage less than 0 for the following resources: %(unders)s" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5517,47 +5512,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "Fetching image '%s' from glance" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "Failed to download %(image_location)s to %(image_path)s" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "Failed to decrypt %(image_location)s to %(image_path)s" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "Failed to untar %(image_location)s to %(image_path)s" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "Failed to upload %(image_location)s to %(image_path)s" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "Failed to decrypt private key: %s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "Failed to decrypt initialization vector: %s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "Failed to decrypt image file %(image_file)s: %(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "Unsafe filenames in image" @@ -5987,76 +5982,76 @@ msgstr "Cannot delete aggregate: %(id)s" msgid "v4 subnets are required for legacy nw_info" msgstr "v4 subnets are required for legacy nw_info" -#: nova/network/quantumv2/__init__.py:67 -#, fuzzy -msgid "quantum authentication failed" -msgstr "Authentication error" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" +msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "allocate_for_instance() for %s" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "empty project id for instance %s" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Host not found" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "Fail to delete port %(portid)s with failure: %(exception)s" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "deallocate_for_instance() for %s" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "Failed to delete quantum port %(portid)s " -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, fuzzy, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "Failed to delete quantum port %(portid)s " -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "get_instance_nw_info() for %s" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, fuzzy, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "Fail to delete port %(portid)s with failure: %(exception)s" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, fuzzy, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "Fail to delete port %(portid)s with failure: %(exception)s" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "validate_networks() for %s" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "Multiple floating IP pools matches found for name '%s'" @@ -6156,12 +6151,12 @@ msgstr "error setting admin password" msgid "Invalid version string" msgstr "Invalid server_string: %s" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6367,11 +6362,21 @@ msgstr "Caught %s, stopping children" msgid "Waiting on %d children to exit" msgstr "Waiting on %d children to exit" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, fuzzy, python-format +msgid "Unknown byte multiplier: %s" +msgstr "Unknown base file: %s" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "DB exception wrapped." @@ -7361,12 +7366,12 @@ msgstr "After force-killing instances: %s" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 #, fuzzy msgid "spawn error" msgstr "unknown guestmount error" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7567,20 +7572,20 @@ msgstr "Adding security group rule: %r" msgid "Adding provider rule: %s" msgstr "Adding provider rule: %s" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "'qemu-img info' parsing failed." -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "fmt=%(fmt)s backed by: %(backing_file)s" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "Converted to raw, but format is now %s" @@ -7849,15 +7854,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8917,7 +8922,7 @@ msgstr "Unable to find vbd for vdi %s" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." @@ -11740,32 +11745,32 @@ msgstr "download_vhd failed: %r" msgid "Error in handshake: %s" msgstr "Error in handshake: %s" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "Invalid request: %s" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "Request: %s" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "Request made with missing token: %s" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "Request made with invalid token: %s" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "Unexpected error: %s" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "Starting nova-xvpvncproxy node (version %s)" @@ -11785,9 +11790,9 @@ msgstr "status must be available" msgid "status must be 'available'" msgstr "status must be available" -#~ msgid "Cannot reboot instance: %s" -#~ msgstr "" +#~ msgid "Certificate %(certificate_id)s not found." +#~ msgstr "Certificate %(certificate_id)s not found." -#~ msgid "No Volume Connector found." -#~ msgstr "" +#~ msgid "quantum authentication failed" +#~ msgstr "Authentication error" diff --git a/nova/locale/es/LC_MESSAGES/nova.po b/nova/locale/es/LC_MESSAGES/nova.po index 05e328bb1..bc710cb4a 100644 --- a/nova/locale/es/LC_MESSAGES/nova.po +++ b/nova/locale/es/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-05-16 06:44+0000\n" "Last-Translator: Paco Molinero <paco@byasl.com>\n" "Language-Team: Spanish <es@li.org>\n" @@ -200,9 +200,9 @@ msgstr "Entrada invalida recibida" msgid "Invalid volume" msgstr "Volumen inválido" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -689,188 +689,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, fuzzy, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "La instacia %(instance_id)s no esta suspendida" -#: nova/exception.py:798 +#: nova/exception.py:794 #, fuzzy, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "La instacia %(instance_id)s no esta suspendida" -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "Tipo de contenido invalido %(content_type)s." -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "el grupo de volumenes %s no existe" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1483,95 +1483,90 @@ msgstr "No se pudo obtener enlace de la ip local de %(interface)s :%(ex)s" msgid "Invalid backend: %s" msgstr "backend inválido: %s" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Imposible encontrar SR en VBD %s" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Imposible encontrar SR en VBD %s" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Imposible encontrar SR en VBD %s" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1585,7 +1580,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1791,206 +1786,206 @@ msgstr "Esta regla ya existe en el grupo %s" msgid "Get console output for instance %s" msgstr "Obtener salida de la consola para la instancia %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Crear volumen de %s GB" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Desasociar volumen %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "Desasociar volumen %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "atributo no soportado: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Asignar dirección" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Liberar dirección %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "Desasociar dirección %s" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "Desasociar dirección %s" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "Desasociar dirección %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "Se va a iniciar la finalización de las instancias" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Reiniciar instancia %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "Des-registrando la imagen %s" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "usuario o grupo no especificado" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "sólo el grupo \"all\" está soportado" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "operation_type debe ser añadir o eliminar" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "Actualizando imagen %s públicamente" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "instancia %s: rescatada" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 #, fuzzy msgid "Invalid CIDR" msgstr "Cidr %(cidr)s invalido" @@ -2439,14 +2434,14 @@ msgstr "La instacia %(instance_id)s no esta suspendida" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2575,142 +2570,142 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "Punto de montaje no puede ser traducido: %s" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "Punto de montaje no puede ser traducido: %s" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "La instacia %(instance_id)s no esta suspendida" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "La instacia %(instance_id)s no esta suspendida" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "instancia %s: rescatada" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Fallo a reinicia la instancia" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -3011,7 +3006,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3110,7 +3105,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3393,7 +3388,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3476,12 +3471,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3613,16 +3608,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "La instacia %(instance_id)s no esta suspendida" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3634,7 +3629,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3682,20 +3677,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3716,320 +3711,320 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "recibido %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "Capturado error: %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "configurando la red del host" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "Asignar dirección" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "el grupo %s ya existe" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "configurando la red del host" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Reiniciar instancia %r" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "Sucedió un error inexperado: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "instancia %s: rescatada" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "Capturado error: %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "Capturado error: %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4495,7 +4490,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4518,7 +4513,7 @@ msgstr "Capturado error: %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4599,8 +4594,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4749,312 +4744,312 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "Tipo de instancia inválido %(instance_type)s." -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "instancia %s: creando snapshot" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "instancia %s: obteniendo los diagnosticos" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "configurando la red del host" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 #, fuzzy msgid "Inject network info" msgstr "configurando la red del host" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "Obtener salida de la consola para la instancia %s" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "Volume_separado: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Desvinculando volumen de instancia desconocida %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Volume_separado: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Fallo al generar metadatos para la ip %s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Borrando usuario %s" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "instancia %s: arrancada" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Borrando usuario %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "Tipo de instancia inválido %(instance_type)s." @@ -5154,11 +5149,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5287,44 +5282,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "instancia %s: rescatada" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "instancia %s: rescatada" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "instancia %s: rescatada" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "instancia %s: rescatada" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "instancia %s: rescatada" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5420,47 +5415,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5868,75 +5863,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "Tipo de instancia inválido %(instance_type)s." -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "instancia %s: arrancada" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "configurando la red del host" @@ -6033,12 +6029,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6242,11 +6238,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "excepción DB empaquetada." @@ -7208,11 +7214,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7405,20 +7411,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7683,15 +7689,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8742,7 +8748,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11453,32 +11459,32 @@ msgstr "No encontrado: %s" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11496,9 +11502,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/fi_FI/LC_MESSAGES/nova.po b/nova/locale/fi_FI/LC_MESSAGES/nova.po index c0457f642..63e3344ec 100644 --- a/nova/locale/fi_FI/LC_MESSAGES/nova.po +++ b/nova/locale/fi_FI/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-18 19:07+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Finnish (Finland) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/fr/LC_MESSAGES/nova.po b/nova/locale/fr/LC_MESSAGES/nova.po index fc142db0d..f07b460ef 100644 --- a/nova/locale/fr/LC_MESSAGES/nova.po +++ b/nova/locale/fr/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-05-14 08:35+0000\n" "Last-Translator: Erwan Gallen <Unknown>\n" "Language-Team: French <fr@li.org>\n" @@ -198,9 +198,9 @@ msgstr "Entrée invalide reçue" msgid "Invalid volume" msgstr "Volume invalide" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -705,93 +705,88 @@ msgstr "La paire de clés %(name)s est introuvable pour l'utilisateur %(user_id) #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "Le certificat %(certificate_id)s non trouvé." - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "Le service %(service_id)s ne peut pas être trouvé." -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "L'hôte %(host)s ne peut pas être trouvé." -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "L'hôte de calcul %(host)s ne peut pas être trouvé." -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "Impossible de trouver le binaire %(binary)s sur l'hôte %(host)s." -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "Le quota ne peut pas être trouvé" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "Le quota pour le projet %(project_id)s ne peut pas être trouvé." -#: nova/exception.py:718 +#: nova/exception.py:714 #, fuzzy, python-format msgid "Quota class %(class_name)s could not be found." msgstr "La clé d'accès %(access_key)s ne peut pas être trouvée." -#: nova/exception.py:722 +#: nova/exception.py:718 #, fuzzy, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "Le quota pour le projet %(project_id)s ne peut pas être trouvé." -#: nova/exception.py:726 +#: nova/exception.py:722 #, fuzzy, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "L'utilisateur %(user_id)s n'a pas été trouvé." -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "Groupe de sécurité %(security_group_id)s non trouvé." -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" "Groupe de sécurité %(security_group_id)s non trouvé pour le projet " "%(project_id)s." -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "Le groupe de sécurité avec la règle %(rule_id)s non trouvé." -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " @@ -800,7 +795,7 @@ msgstr "" "Le groupe de sécurité %(security_group_id)s est déjà associé avec " "l'instance %(instance_id)s" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " @@ -809,92 +804,97 @@ msgstr "" "Le groupe de sécurité %(security_group_id)s n'est pas associé avec " "l'instance %(instance_id)s" -#: nova/exception.py:757 +#: nova/exception.py:753 #, fuzzy, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "Le groupe de sécurité avec la règle %(rule_id)s non trouvé." -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "La migration %(migration_id)s ne peut être trouvée." -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" "Migration non trouvée pour l'instance %(instance_id)s avec le statut " "%(status)s." -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "La console %(console_id)s ne peut être trouvée." -#: nova/exception.py:794 +#: nova/exception.py:790 #, fuzzy, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "La console pour l'instance %(instance_id)s ne peut être trouvée." -#: nova/exception.py:798 +#: nova/exception.py:794 #, fuzzy, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "La console pour l'instance %(instance_id)s ne peut être trouvée." -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "Le type de console %(console_type)s est invalide " -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "Le type d'instance %(instance_type_id)s ne peut être trouvé." -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "Le type d'instance avec le nom %(instance_type_name)s ne peut être trouvé." -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "Le Flavor %(flavor_id)s ne peut être trouvé." -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "Le groupe de volume %s n'existe pas" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1515,95 +1515,90 @@ msgstr "Impossible de trouver l'IP du lien local de %(interface)s :%(ex)s" msgid "Invalid backend: %s" msgstr "Backend invalide : %s" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Impossible de trouver SR du VDB %s" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Impossible de trouver SR du VDB %s" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Impossible de trouver SR du VDB %s" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "Vous devez implémenter __call__" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1617,7 +1612,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1830,214 +1825,214 @@ msgstr "Cette règle existe déjà dans le groupe %s" msgid "Get console output for instance %s" msgstr "Récupération de la sortie de la console de l'instance %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Création d'un volume de %s Go" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" "Montage du volume %(volume_id)s sur l'instance %(instance_id)s en tant " "que %(device)s" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Dé-montage du volume %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "Dé-montage du volume %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "attribut non reconnu : %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Allocation d'adresse" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 #, fuzzy msgid "No more floating IPs available" msgstr "Aucune IPs dynamiques disponibles." -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Désallocation de l'adresse %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "Association de l'adresse %(public_ip)s avec l'instance %(instance_id)s" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "Désassociation de l'adresse %s" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 #, fuzzy msgid "Floating ip is already associated." msgstr "L'IP dynamique %(address)s est associée." -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 #, fuzzy msgid "l3driver call to add floating ip failed." msgstr "Aucune IPs dynamiques disponibles." -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "Désassociation de l'adresse %s" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "Désassociation de l'adresse %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 #, fuzzy msgid "Floating ip is not associated." msgstr "L'IP dynamique %(address)s n'est pas associée." -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "Début de la destruction d'instance" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Re-démarrage de l'instance %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "Dé-enregitrement de l'image %s" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "Image %(image_location)s enregistré avec l'id %(image_id)s" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "Utilisateur ou groupe non spécifié" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "Seul le group \"tous\" est supporté" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" "le type d'opération (operation_type) doit être ajout (add) ou suppression" " (remove)" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "Mis à jour de la publication de l'image %s" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "instance %s: récupérée" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 #, fuzzy msgid "Invalid CIDR" msgstr "Le cidr %(cidr)s est invalide" @@ -2486,14 +2481,14 @@ msgstr "L'hôte %(host)s ne peut pas être trouvé." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2622,142 +2617,142 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "Le point de montage ne peut pas être traduit : %s" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "Le point de montage ne peut pas être traduit : %s" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "L'instance %(instance_id)s n'a pas pu être trouvée." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "L'instance %(instance_id)s n'a pas pu être trouvée." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "instance %s: récupérée" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Échec du redémarrage de l'instance" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -3059,7 +3054,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3160,7 +3155,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "L'IP dynamique %(address)s n'est pas associée." #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3444,7 +3439,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3527,12 +3522,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3664,16 +3659,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "Volume non trouvé pour l'instance %(instance_id)s." -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3685,7 +3680,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3733,20 +3728,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3767,322 +3762,322 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "%s reçu" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "Erreur interceptée : %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "réglage de l'hôte réseau" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "adresse de départ" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 #, fuzzy msgid "No fixed IP found." msgstr "Aucunes IPs fixes trouvées." -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "L'IP dynamique %(address)s est associée." -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "adresse de départ" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "réglage de l'hôte réseau" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 #, fuzzy msgid "UUID is required to delete Quantum Networks" msgstr "%(req)s est requis pour créer un réseau." -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Re-démarrage de l'instance %r" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "Le service %(service_id)s ne peut pas être trouvé." -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "Le service %(service_id)s ne peut pas être trouvé." -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "\"Erreur inopinée\" remontée : %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "instance %s: récupérée" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "Erreur interceptée : %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "Erreur interceptée : %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4548,7 +4543,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4571,7 +4566,7 @@ msgstr "Erreur interceptée : %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4652,8 +4647,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4803,314 +4798,314 @@ msgstr "instance %s: dé-récupération" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "L'instance de type %(instance_type)s est invalide." -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "instance %s: création d'un instantané (snapshot)" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "instance %s: récupération des diagnostiques" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "réglage de l'hôte réseau" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 #, fuzzy msgid "Inject network info" msgstr "réglage de l'hôte réseau" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "Récupération de la sortie de la console de l'instance %s" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 #, fuzzy msgid "Getting vnc console" msgstr "Ajout de console" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "Ajout de console" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Démontage de volume d'une instance inconnue %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Impossible de récupérer les méta-donnérs pour l'IP : %s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Suppression de l'utilisateur %s" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "instance %s: a démarrée" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Suppression de l'utilisateur %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "L'instance de type %(instance_type)s est invalide." @@ -5211,11 +5206,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5344,44 +5339,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "instance %s: récupérée" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "instance %s: récupérée" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "instance %s: récupérée" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "instance %s: récupérée" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "instance %s: récupérée" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5477,47 +5472,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "Impossible de déchiffrer la clef privée : %s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "Impossible de déchiffrer le vecteur d'initialisation : %s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "Impossible de déchiffrer le fichier image %(image_file)s: %(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5927,75 +5922,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "L'instance de type %(instance_type)s est invalide." -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Aucuns types d'instance trouvés." -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "Aucune IP dynamique trouvée pour l'id %(id)s." @@ -6096,12 +6092,12 @@ msgstr "Erreur au démarrage xvp : %s" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6305,11 +6301,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7271,11 +7277,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7468,20 +7474,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7746,15 +7752,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8810,7 +8816,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11533,32 +11539,32 @@ msgstr "\"Non trouvé\" remonté : %s" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11576,9 +11582,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" -#~ msgstr "" +#~ msgid "Certificate %(certificate_id)s not found." +#~ msgstr "Le certificat %(certificate_id)s non trouvé." -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/hr/LC_MESSAGES/nova.po b/nova/locale/hr/LC_MESSAGES/nova.po index 2b662b1aa..9bbfae0f3 100644 --- a/nova/locale/hr/LC_MESSAGES/nova.po +++ b/nova/locale/hr/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Croatian " @@ -195,9 +195,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -675,188 +675,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1468,95 +1468,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1570,7 +1565,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1775,202 +1770,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2416,14 +2411,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2552,136 +2547,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3073,7 +3068,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3349,7 +3344,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3432,12 +3427,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3568,16 +3563,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3589,7 +3584,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3637,20 +3632,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3671,312 +3666,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4424,7 +4419,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4446,7 +4441,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4525,8 +4520,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4670,304 +4665,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5067,11 +5062,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5196,44 +5191,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5329,47 +5324,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5775,74 +5770,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5936,12 +5932,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6144,11 +6140,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7101,11 +7107,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7296,20 +7302,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7569,15 +7575,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8613,7 +8619,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11289,32 +11295,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11332,9 +11338,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/hu/LC_MESSAGES/nova.po b/nova/locale/hu/LC_MESSAGES/nova.po index 90e7a9332..b4a7674a0 100644 --- a/nova/locale/hu/LC_MESSAGES/nova.po +++ b/nova/locale/hu/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Hungarian " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/id/LC_MESSAGES/nova.po b/nova/locale/id/LC_MESSAGES/nova.po index f60e7cf98..e19eaeee2 100644 --- a/nova/locale/id/LC_MESSAGES/nova.po +++ b/nova/locale/id/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Indonesian " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/it/LC_MESSAGES/nova.po b/nova/locale/it/LC_MESSAGES/nova.po index ff6f33136..c25eb846e 100644 --- a/nova/locale/it/LC_MESSAGES/nova.po +++ b/nova/locale/it/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-04-01 18:59+0000\n" "Last-Translator: simone.sandri <lexluxsox@hotmail.it>\n" "Language-Team: Italian <it@li.org>\n" @@ -194,9 +194,9 @@ msgstr "E' stato ricevuto un input non valido" msgid "Invalid volume" msgstr "Volume non valido" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -677,188 +677,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1471,95 +1471,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Impossibile localizzare il volume %s" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Impossibile localizzare il volume %s" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Impossibile localizzare il volume %s" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1573,7 +1568,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1778,203 +1773,203 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "istanza %s: ripristino" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2421,14 +2416,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2557,139 +2552,139 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "istanza %s: creazione snapshot in corso" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "Volume non valido" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Impossibile riavviare l'istanza" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2988,7 +2983,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3086,7 +3081,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3364,7 +3359,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3447,12 +3442,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3584,16 +3579,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3605,7 +3600,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3653,20 +3648,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3687,316 +3682,316 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "ricevuto %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "istanza %s: ripristino rete" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Impossibile sospendere l'istanza" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "istanza %s: ripristino" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4451,7 +4446,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4473,7 +4468,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4553,8 +4548,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4702,309 +4697,309 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "istanza %s: creazione snapshot in corso" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "istanza %s: ricezione diagnostiche" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "istanza %s: ripristino rete" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Impossibile montare il volume all'istanza %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Impossibile riavviare l'istanza" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "istanza %s: creazione snapshot in corso" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5104,11 +5099,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5237,44 +5232,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5370,47 +5365,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5818,75 +5813,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "istanza %s: sospensione in corso" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5980,12 +5976,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6189,11 +6185,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7151,11 +7157,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7347,20 +7353,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7625,15 +7631,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8682,7 +8688,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11372,32 +11378,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11415,9 +11421,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/it_IT/LC_MESSAGES/nova.po b/nova/locale/it_IT/LC_MESSAGES/nova.po index f27d2af83..c3cc96df7 100644 --- a/nova/locale/it_IT/LC_MESSAGES/nova.po +++ b/nova/locale/it_IT/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Italian (Italy) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ja/LC_MESSAGES/nova.po b/nova/locale/ja/LC_MESSAGES/nova.po index c317aa9fc..bed8b8d39 100644 --- a/nova/locale/ja/LC_MESSAGES/nova.po +++ b/nova/locale/ja/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2011-08-23 11:22+0000\n" "Last-Translator: Thierry Carrez <thierry.carrez+lp@gmail.com>\n" "Language-Team: \n" @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -679,188 +679,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "ボリュームグループ%sãŒå˜åœ¨ã—ã¾ã›ã‚“。" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1473,95 +1473,90 @@ msgstr "%(interface)s ã®ãƒãƒ¼ã‚«ãƒ«IPアドレスã®ãƒªãƒ³ã‚¯ãŒå–å¾—ã§ãã msgid "Invalid backend: %s" msgstr "䏿£ãªãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ã§ã™: %s" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "VBD %s ã‹ã‚‰ SRã‚’å–å¾—ã§ãã¾ã›ã‚“。" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "VBD %s ã‹ã‚‰ SRã‚’å–å¾—ã§ãã¾ã›ã‚“。" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "VBD %s ã‹ã‚‰ SRã‚’å–å¾—ã§ãã¾ã›ã‚“。" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "__call__ を実装ã—ãªã‘れã°ãªã‚Šã¾ã›ã‚“" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1575,7 +1570,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1781,206 +1776,206 @@ msgstr "指定ã•れãŸãƒ«ãƒ¼ãƒ«ã¯æ—¢ã«ã‚°ãƒ«ãƒ¼ãƒ— %s ã«å˜åœ¨ã—ã¦ã„ã¾ã msgid "Get console output for instance %s" msgstr "Get console output: インスタンス %s ã®ã‚³ãƒ³ã‚½ãƒ¼ãƒ«å‡ºåŠ›ã‚’å–å¾—ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Create volume: %s GBã®ãƒœãƒªãƒ¥ãƒ¼ãƒ を作æˆã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "ボリューム%(volume_id)s をインスタンス %(instance_id)s ã®ãƒ‡ãƒã‚¤ã‚¹ %(device)s ã«æŽ¥ç¶š" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Detach volume: ボリューム%s をデタッãƒã—ã¾ã™" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "Detach volume: ボリューム%s をデタッãƒã—ã¾ã™" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "アトリビュート %s ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Allocate address: アドレスを割り当ã¦ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Release address: アドレス %s を開放ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "インスタンス %(instance_id)s ã«ã‚¢ãƒ‰ãƒ¬ã‚¹ %(public_ip)s を割り当ã¦" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "Disassociate address: アドレス %s ã®é–¢é€£ä»˜ã‘を解除ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "Disassociate address: アドレス %s ã®é–¢é€£ä»˜ã‘を解除ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "Disassociate address: アドレス %s ã®é–¢é€£ä»˜ã‘を解除ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "インスタンス終了処ç†ã‚’é–‹å§‹ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Reboot instance: インスタンス %r ã‚’å†èµ·å‹•ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "De-registering image: イメージ %s を登録解除ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "イメージ %(image_location)s ㌠ID %(image_id)s ã§ç™»éŒ²ã•れã¾ã—ãŸ" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "ユーザã¾ãŸã¯ã‚°ãƒ«ãƒ¼ãƒ—ãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“。" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "グループ \"all\" ã®ã¿ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "operation_type 㯠add ã¾ãŸã¯ remove ã®ä½•れã‹ã§ã‚ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "イメージ %s ã®å…¬é–‹è¨å®šã‚’æ›´æ–°ã—ã¾ã™ã€‚" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "インスタンス %s: rescued" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2427,14 +2422,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2563,141 +2558,141 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "マウントãƒã‚¤ãƒ³ãƒˆã‚’変æ›ã§ãã¾ã›ã‚“。 %s" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "マウントãƒã‚¤ãƒ³ãƒˆã‚’変æ›ã§ãã¾ã›ã‚“。 %s" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "インスタンス %s: èµ·å‹•ã—ã¾ã—ãŸã€‚" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "インスタンス %s: rescued" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "インスタンス終了処ç†ã‚’é–‹å§‹ã—ã¾ã™ã€‚" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2998,7 +2993,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3097,7 +3092,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "インスタンス %(instance_id)s ã«ã‚¢ãƒ‰ãƒ¬ã‚¹ %(public_ip)s を割り当ã¦" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3379,7 +3374,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3462,12 +3457,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3599,16 +3594,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "インスタンス %(instance_id)s ã«ã‚¢ãƒ‰ãƒ¬ã‚¹ %(public_ip)s を割り当ã¦" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3620,7 +3615,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3668,20 +3663,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3702,320 +3697,320 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "å—信: %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "エラー %s ã‚’ã‚ャッãƒã—ã¾ã—ãŸã€‚" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒ›ã‚¹ãƒˆã®è¨å®šã‚’ã—ã¾ã™ã€‚" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "開始アドレス" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "グループ %s ã¯æ—¢ã«å˜åœ¨ã—ã¦ã„ã¾ã™ã€‚" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "開始アドレス" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒ›ã‚¹ãƒˆã®è¨å®šã‚’ã—ã¾ã™ã€‚" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Reboot instance: インスタンス %r ã‚’å†èµ·å‹•ã—ã¾ã™ã€‚" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "予期ã—ãªã„エラー発生: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "インスタンス %s: rescued" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "エラー %s ã‚’ã‚ャッãƒã—ã¾ã—ãŸã€‚" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "エラー %s ã‚’ã‚ャッãƒã—ã¾ã—ãŸã€‚" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4475,7 +4470,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4498,7 +4493,7 @@ msgstr "エラー %s ã‚’ã‚ャッãƒã—ã¾ã—ãŸã€‚" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4579,8 +4574,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4730,314 +4725,314 @@ msgstr "Unrescuing: インスタンス %s をアンレスã‚ューã—ã¾ã™ã€‚" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "snapshotting: インスタンス %s ã®ã‚¹ãƒŠãƒƒãƒ—ショットをå–å¾—ä¸" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "retrieving diagnostics: インスタンス %s ã®è¨ºæ–æƒ…å ±ã‚’å–å¾—ã—ã¾ã™ã€‚" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒ›ã‚¹ãƒˆã®è¨å®šã‚’ã—ã¾ã™ã€‚" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 #, fuzzy msgid "Inject network info" msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒ›ã‚¹ãƒˆã®è¨å®šã‚’ã—ã¾ã™ã€‚" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "Get console output: インスタンス %s ã®ã‚³ãƒ³ã‚½ãƒ¼ãƒ«å‡ºåŠ›ã‚’å–å¾—ã—ã¾ã™ã€‚" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 #, fuzzy msgid "Getting vnc console" msgstr "ã‚³ãƒ³ã‚½ãƒ¼ãƒ«ã‚’è¿½åŠ ã—ã¦ã„ã¾ã™" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "ã‚³ãƒ³ã‚½ãƒ¼ãƒ«ã‚’è¿½åŠ ã—ã¦ã„ã¾ã™" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "ボリューム切æ–: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "ボリュームを未知ã®ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹ %s ã‹ã‚‰ãƒ‡ã‚¿ãƒƒãƒã—ã¾ã™ã€‚" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "ボリューム切æ–: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "ip %s ã«å¯¾ã™ã‚‹ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Deleting user: ユーザ %s を削除ã—ã¾ã™ã€‚" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "インスタンス %s: èµ·å‹•ã—ã¾ã—ãŸã€‚" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Deleting user: ユーザ %s を削除ã—ã¾ã™ã€‚" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5137,11 +5132,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5267,44 +5262,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "インスタンス %s: rescued" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "インスタンス %s: rescued" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "インスタンス %s: rescued" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "インスタンス %s: rescued" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "インスタンス %s: rescued" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5400,47 +5395,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "プライベートã‚ーã®å¾©å·ã«å¤±æ•—ã—ã¾ã—ãŸ: %s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "åˆæœŸåŒ–ベクタã®å¾©å·ã«å¤±æ•—ã—ã¾ã—ãŸ: %s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "イメージファイル %(image_file)s ã®å¾©å·ã«å¤±æ•—ã—ã¾ã—ãŸ: %(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5848,75 +5843,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "Get console output: インスタンス %s ã®ã‚³ãƒ³ã‚½ãƒ¼ãƒ«å‡ºåŠ›ã‚’å–å¾—ã—ã¾ã™ã€‚" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "インスタンス %s: èµ·å‹•ã—ã¾ã—ãŸã€‚" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒ›ã‚¹ãƒˆã®è¨å®šã‚’ã—ã¾ã™ã€‚" @@ -6013,12 +6009,12 @@ msgstr "xvp ã®é–‹å§‹ä¸ã«ã‚¨ãƒ©ãƒ¼: %s" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6222,11 +6218,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7184,11 +7190,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7380,20 +7386,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7658,15 +7664,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8716,7 +8722,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11420,32 +11426,32 @@ msgstr "NotFound 発生: %s" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11463,9 +11469,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ka_GE/LC_MESSAGES/nova.po b/nova/locale/ka_GE/LC_MESSAGES/nova.po index 18143b317..9bf6bb480 100644 --- a/nova/locale/ka_GE/LC_MESSAGES/nova.po +++ b/nova/locale/ka_GE/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Georgian (Georgia) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ko/LC_MESSAGES/nova.po b/nova/locale/ko/LC_MESSAGES/nova.po index cde76912a..143e630bc 100644 --- a/nova/locale/ko/LC_MESSAGES/nova.po +++ b/nova/locale/ko/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2011-12-16 04:42+0000\n" "Last-Translator: Zhongyue Luo <lzyeval@gmail.com>\n" "Language-Team: Korean <ko@li.org>\n" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "%s ë³¼ë¥¨ì„ ì°¾ì„수 없습니다" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "%s ë³¼ë¥¨ì„ ì°¾ì„수 없습니다" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "%s ë³¼ë¥¨ì„ ì°¾ì„수 없습니다" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,137 +2546,137 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "ì¸ìŠ¤í„´ìŠ¤ %s: 스냅샷 ì €ìž¥ì¤‘" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2979,7 +2974,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3077,7 +3072,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3353,7 +3348,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3436,12 +3431,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3573,16 +3568,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3594,7 +3589,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3642,20 +3637,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3676,313 +3671,313 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "ì¸ìŠ¤í„´ìŠ¤ %s를 재부팅합니다" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4432,7 +4427,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4454,7 +4449,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4533,8 +4528,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4682,307 +4677,307 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "ì¸ìŠ¤í„´ìŠ¤ %s: 스냅샷 ì €ìž¥ì¤‘" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "볼륨 탈착: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "%s ì¸ìŠ¤í„´ìŠ¤ì— ë³¼ë¥¨ìž¥ì°© í• ìˆ˜ 없습니다" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "볼륨 탈착: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "ì¸ìŠ¤í„´ìŠ¤ %s: 스냅샷 ì €ìž¥ì¤‘" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5082,11 +5077,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5211,44 +5206,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5344,47 +5339,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5790,74 +5785,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5951,12 +5947,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6159,11 +6155,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7116,11 +7122,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7311,20 +7317,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7589,15 +7595,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8643,7 +8649,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11324,32 +11330,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11367,9 +11373,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ko_KR/LC_MESSAGES/nova.po b/nova/locale/ko_KR/LC_MESSAGES/nova.po index 1e1c36398..7f1204815 100644 --- a/nova/locale/ko_KR/LC_MESSAGES/nova.po +++ b/nova/locale/ko_KR/LC_MESSAGES/nova.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-06 16:05+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: en_US <LL@li.org>\n" @@ -194,9 +194,9 @@ msgstr "ìž…ë ¥ ê°’ì´ ì •í™•í•˜ì§€ 않습니다." msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "vol = %s\n" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "주소 í• ë‹¹" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "주소 릴리즈 %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,137 +2546,137 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "ìž…ë ¥ ê°’ì´ ì •í™•í•˜ì§€ 않습니다." -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3073,7 +3068,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3349,7 +3344,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3432,12 +3427,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3569,16 +3564,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3590,7 +3585,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3638,20 +3633,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3672,312 +3667,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4425,7 +4420,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4447,7 +4442,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4526,8 +4521,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4671,304 +4666,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5068,11 +5063,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5197,44 +5192,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5330,47 +5325,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5776,74 +5771,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5937,12 +5933,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6145,11 +6141,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7102,11 +7108,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7297,20 +7303,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7570,15 +7576,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8614,7 +8620,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11291,32 +11297,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11334,9 +11340,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ms/LC_MESSAGES/nova.po b/nova/locale/ms/LC_MESSAGES/nova.po index 6a0d7730e..21ec75fc4 100644 --- a/nova/locale/ms/LC_MESSAGES/nova.po +++ b/nova/locale/ms/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Malay " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/nb/LC_MESSAGES/nova.po b/nova/locale/nb/LC_MESSAGES/nova.po index 998e5e734..0c9511f97 100644 --- a/nova/locale/nb/LC_MESSAGES/nova.po +++ b/nova/locale/nb/LC_MESSAGES/nova.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-09-13 10:30+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: nb <LL@li.org>\n" @@ -195,9 +195,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -675,188 +675,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "Tjeneste %(service_id)s ble ikke funnet." -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1468,95 +1468,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "Forventet objekt av typen: %s" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, fuzzy, python-format msgid "%s is not a string or unicode" msgstr "Tjenernavn er ikke en streng eller unicode" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Kan ikke finne adressen %r" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Kan ikke finne adressen %r" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Kan ikke finne adressen %r" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "Stoppet WSGI tjener." -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "WSGI tjener har stoppet." -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "Du mÃ¥ implementere __call__" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1570,7 +1565,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1775,202 +1770,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Tildel adresse" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Frigjør adresse %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "bruker eller gruppe ikke spesifisert" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "kun gruppe \"all\" er støttet" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2417,14 +2412,14 @@ msgstr "Tjeneste %(service_id)s ble ikke funnet." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2553,139 +2548,139 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "Ressurs ble ikke funnet." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "Ressurs ble ikke funnet." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "Ugyldig snapshot" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2981,7 +2976,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3079,7 +3074,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3358,7 +3353,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3441,12 +3436,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3577,16 +3572,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3598,7 +3593,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3646,20 +3641,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3680,314 +3675,314 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "Tildel adresse" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "Nettverk ikke funnet" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "Tjeneste %(service_id)s ble ikke funnet." -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "Tjeneste %(service_id)s ble ikke funnet." -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4435,7 +4430,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4457,7 +4452,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4536,8 +4531,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4681,304 +4676,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Kunne ikke hente metadata for ip:% s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5078,11 +5073,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5207,44 +5202,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5340,47 +5335,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5787,75 +5782,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Nettverk ikke funnet" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5949,12 +5945,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6157,11 +6153,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7116,11 +7122,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7312,20 +7318,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7587,15 +7593,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8631,7 +8637,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11313,32 +11319,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11356,9 +11362,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/nl_NL/LC_MESSAGES/nova.po b/nova/locale/nl_NL/LC_MESSAGES/nova.po index d4aa6ac08..980a5e0a4 100644 --- a/nova/locale/nl_NL/LC_MESSAGES/nova.po +++ b/nova/locale/nl_NL/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Dutch (Netherlands) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/nova.pot b/nova/locale/nova.pot index 9d8f7c49f..65a769538 100644 --- a/nova/locale/nova.pot +++ b/nova/locale/nova.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: nova jenkins.nova.propose.translation.update.280\n" +"Project-Id-Version: nova jenkins.nova.propose.translation.update.282\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -673,188 +673,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1466,95 +1466,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1568,7 +1563,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1773,202 +1768,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2414,14 +2409,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2550,136 +2545,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2974,7 +2969,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3071,7 +3066,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3347,7 +3342,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3430,12 +3425,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3566,16 +3561,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3587,7 +3582,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3635,20 +3630,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3669,312 +3664,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4422,7 +4417,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4444,7 +4439,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4523,8 +4518,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4668,304 +4663,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5065,11 +5060,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5194,44 +5189,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5327,47 +5322,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5773,74 +5768,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5934,12 +5930,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6142,11 +6138,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7099,11 +7105,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7294,20 +7300,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7567,15 +7573,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8611,7 +8617,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11287,32 +11293,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" diff --git a/nova/locale/pt/LC_MESSAGES/nova.po b/nova/locale/pt/LC_MESSAGES/nova.po index c3824cc52..813f61199 100644 --- a/nova/locale/pt/LC_MESSAGES/nova.po +++ b/nova/locale/pt/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Portuguese " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/pt_BR/LC_MESSAGES/nova.po b/nova/locale/pt_BR/LC_MESSAGES/nova.po index 84f7fa2b0..2e050aac6 100644 --- a/nova/locale/pt_BR/LC_MESSAGES/nova.po +++ b/nova/locale/pt_BR/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-05-04 19:25+0000\n" "Last-Translator: Júlio Cezar Santos Pires <Unknown>\n" "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n" @@ -194,9 +194,9 @@ msgstr "Dados recebidos é inválido" msgid "Invalid volume" msgstr "Volume inválido" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -679,188 +679,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "Certificado %(certificate_id)s não encontrado." - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "Serviço %(service_id)s não encontrado." -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "Host %(host)s não encontrado." -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, fuzzy, python-format msgid "Quota class %(class_name)s could not be found." msgstr "Host %(host)s não encontrado." -#: nova/exception.py:722 +#: nova/exception.py:718 #, fuzzy, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "Projeto %(project_id)s não foi encontrado." -#: nova/exception.py:726 +#: nova/exception.py:722 #, fuzzy, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "Usuário %(user_id)s não foi encontrado." -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, fuzzy, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "A instância %(instance_id)s não está executando." -#: nova/exception.py:798 +#: nova/exception.py:794 #, fuzzy, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "A instância %(instance_id)s não está executando." -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "Tipo de conteúdo %(content_type)s é inválido." -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "Instância não existe" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1473,95 +1473,90 @@ msgstr "Não foi possÃvel atribuir um IP para o Link Local de %(interface)s :%( msgid "Invalid backend: %s" msgstr "Backend inválido: %s" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "Objeto esperado do tipo: %s" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Não é possÃvel localizar o volume %s" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Não é possÃvel localizar o volume %s" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Não é possÃvel localizar o volume %s" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1575,7 +1570,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1781,206 +1776,206 @@ msgstr "Esta regra já existe no grupo %s" msgid "Get console output for instance %s" msgstr "Obter saÃda do console para instância %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Criar volume de %s GB" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Desanexar volume %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "Desanexar volume %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "atributo não suportado: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Alocar endereço" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "Liberar endereço %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "Desatribuir endereço %s" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "Desatribuir endereço %s" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "Desatribuir endereço %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "Começando a terminar instâncias" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Reiniciar instância %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "Removendo o registro da imagem %s" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "usuário ou grupo não especificado" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "apenas o grupo \"all\" é suportado" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "operation_type deve ser add ou remove" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "Atualizando publicidade da imagem %s" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "Instância não existe" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2428,14 +2423,14 @@ msgstr "Host %(host)s não encontrado." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2564,142 +2559,142 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "Ponto de montagem não pode ser traduzido: %s" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "Ponto de montagem não pode ser traduzido: %s" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "Serviço %(service_id)s não encontrado." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "Serviço %(service_id)s não encontrado." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "Corpo do pedido está mal formado" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Falhou ao reiniciar instância" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2999,7 +2994,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3100,7 +3095,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "Volume não encontrada para a instância %(instance_id)s." #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3384,7 +3379,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3467,12 +3462,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3604,16 +3599,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "Volume não encontrada para a instância %(instance_id)s." -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3625,7 +3620,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3673,20 +3668,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3707,321 +3702,321 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "recebido %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "Capturado o erro: %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "instância %s: reset da rede" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "Alocar endereço" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "group %s já existe" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "Nenhuma rede definida." -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 #, fuzzy msgid "UUID is required to delete Quantum Networks" msgstr "%(req)s é necessário para criar a rede." -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Reiniciar instância %r" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "Serviço %(service_id)s não encontrado." -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "Serviço %(service_id)s não encontrado." -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "Erro inexperado lançado: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "Instância não existe" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, fuzzy, python-format msgid "%s created" msgstr "_criar: %s" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "Capturado o erro: %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "Capturado o erro: %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4480,7 +4475,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4503,7 +4498,7 @@ msgstr "Capturado o erro: %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4584,8 +4579,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4735,313 +4730,313 @@ msgstr "instância %s: desfazendo o resgate" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "Iniciando instância %s" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "Instância não existe" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "instância %s: recuperando os diagnósticos" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "instância %s: reset da rede" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "Obter saÃda do console para instância %s" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 #, fuzzy msgid "Getting vnc console" msgstr "Adicionando console" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "Adicionando console" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "Desconectando volume da instância desconhecida %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Detach_volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Falha ao obter metadados para o ip: %s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Remover volume com id: %s" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "Instância %s não encontrada" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Removendo imagem %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "Iniciando instância %s" @@ -5141,11 +5136,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5273,44 +5268,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "Corpo do pedido está mal formado" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "Corpo do pedido está mal formado" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "Corpo do pedido está mal formado" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "Corpo do pedido está mal formado" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "Corpo do pedido está mal formado" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5406,47 +5401,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "Removendo imagem %s" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5854,75 +5849,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "tipo de instância %(instance_type)s é inválida." -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Imagem não encontrada." -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "Removendo rede com id %s" @@ -6019,12 +6015,12 @@ msgstr "Configurar senha do administrador" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6228,11 +6224,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7191,11 +7197,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7389,20 +7395,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7669,15 +7675,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8728,7 +8734,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11432,32 +11438,32 @@ msgstr "NotFound lançado: %s" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11475,9 +11481,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" -#~ msgstr "" +#~ msgid "Certificate %(certificate_id)s not found." +#~ msgstr "Certificado %(certificate_id)s não encontrado." -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ro/LC_MESSAGES/nova.po b/nova/locale/ro/LC_MESSAGES/nova.po index f907b82e0..4b2a1d2a0 100644 --- a/nova/locale/ro/LC_MESSAGES/nova.po +++ b/nova/locale/ro/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-06-10 18:32+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Romanian " @@ -195,9 +195,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -675,188 +675,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1468,95 +1468,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1570,7 +1565,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1775,202 +1770,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2416,14 +2411,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2552,136 +2547,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3073,7 +3068,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3349,7 +3344,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3432,12 +3427,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3568,16 +3563,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3589,7 +3584,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3637,20 +3632,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3671,312 +3666,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4424,7 +4419,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4446,7 +4441,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4525,8 +4520,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4670,304 +4665,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5067,11 +5062,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5196,44 +5191,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5329,47 +5324,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5775,74 +5770,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5936,12 +5932,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6144,11 +6140,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7101,11 +7107,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7296,20 +7302,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7569,15 +7575,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8613,7 +8619,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11289,32 +11295,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11332,9 +11338,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/ru/LC_MESSAGES/nova.po b/nova/locale/ru/LC_MESSAGES/nova.po index de31cceb9..849527266 100644 --- a/nova/locale/ru/LC_MESSAGES/nova.po +++ b/nova/locale/ru/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-03-25 09:34+0000\n" "Last-Translator: Eugene Marshal <Unknown>\n" "Language-Team: Russian <ru@li.org>\n" @@ -201,9 +201,9 @@ msgstr "" msgid "Invalid volume" msgstr "ÐедопуÑтимый том" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "ÐедопуÑтимые метаданные" @@ -692,93 +692,88 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "Сертификат %(certificate_id)s не найден." - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "Служба %(service_id)s не найдена." -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "Узел %(host)s не найден." -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "Узел Ñompute %(host)s не найден." -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "Квота не найдена" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "Квота проекта %(project_id)s не найдена." -#: nova/exception.py:718 +#: nova/exception.py:714 #, fuzzy, python-format msgid "Quota class %(class_name)s could not be found." msgstr "КлаÑÑ %(class_name)s не найден: %(exception)s" -#: nova/exception.py:722 +#: nova/exception.py:718 #, fuzzy, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "Квота проекта %(project_id)s не найдена." -#: nova/exception.py:726 +#: nova/exception.py:722 #, fuzzy, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "Пользователь %(user_id)s не найден." -#: nova/exception.py:730 +#: nova/exception.py:726 #, fuzzy, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "РаÑширенный реÑурÑ: %s" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "Группа безопаÑноÑти %(security_group_id)s не найдена." -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" "Группа безопаÑноÑти %(security_group_id)s не найдена Ð´Ð»Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð° " "%(project_id)s." -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "Группа безопаÑноÑти Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»Ð¾Ð¼ %(rule_id)s не найдена." -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " @@ -787,7 +782,7 @@ msgstr "" "Группа безопаÑноÑти %(security_group_id)s уже аÑÑоциирована Ñ ÐºÐ¾Ð¿Ð¸ÐµÐ¹ " "%(instance_id)s" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " @@ -796,90 +791,95 @@ msgstr "" "Группа безопаÑноÑти %(security_group_id)s не аÑÑоциирована Ñ ÐºÐ¾Ð¿Ð¸ÐµÐ¹ " "%(instance_id)s" -#: nova/exception.py:757 +#: nova/exception.py:753 #, fuzzy, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "Группа безопаÑноÑти Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»Ð¾Ð¼ %(rule_id)s не найдена." -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "Перемещение %(migration_id)s не найдено." -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "Перемещение не найдено Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %(instance_id)s в ÑоÑтоÑнии %(status)s." -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "Пул конÑоли %(pool_id)s не найден." -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "КонÑоль %(console_id)s не найдена." -#: nova/exception.py:794 +#: nova/exception.py:790 #, fuzzy, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "КонÑоль Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %(instance_id)s не найдена." -#: nova/exception.py:798 +#: nova/exception.py:794 #, fuzzy, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "КонÑоль Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %(instance_id)s в пуле %(pool_id)s не найдена." -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "ÐедопуÑтимый тип конÑоли %(console_type)s " -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "Тип копии %(instance_type_id)s не найден." -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "Тип копии Ñ Ð½Ð°Ð·Ð²Ð°Ð½Ð¸ÐµÐ¼ %(instance_type_name)s не найден." -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "том группы %s не ÑущеÑтвует" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1501,95 +1501,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "ÐедопуÑтимый внутренний интерфейÑ: %s" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "ОжидалÑÑ Ð¾Ð±ÑŠÐµÐºÑ‚ типа: %s" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ server_string: %s" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "timefunc: '%(name)s' занÑла %(total_time).2f Ñ." -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, fuzzy, python-format msgid "Reloading cached file %s" msgstr "Выгрузка образа %s" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, fuzzy, python-format msgid "Could not remove tmpdir: %s" msgstr "Ошибка ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ ÐºÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€Ð°: %s" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, fuzzy, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "ВыполнÑетÑÑ %(name)s на %(host)s:%(port)s" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "Ðевозможно найти Ð°Ð´Ñ€ÐµÑ %r" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "Ðевозможно найти Ð°Ð´Ñ€ÐµÑ %r" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "Ðевозможно найти Ð°Ð´Ñ€ÐµÑ %r" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "ВыполнÑетÑÑ Ð¾Ñтанов Ñервера WSGI." -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "Сервер WSGI был оÑтановлен." -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1603,7 +1598,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1815,211 +1810,211 @@ msgstr "Ðто правило уже ÑущеÑтвует в группе %s" msgid "Get console output for instance %s" msgstr "Получить конÑольный вывод Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %s" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "Создать том из Ñнимка %s" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Создание раздела %s ГБ" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 #, fuzzy msgid "Delete Failed" msgstr "Ошибка ÑозданиÑ" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "Подключить том %(volume_id)s Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %(instance_id)s на %(device)s" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 #, fuzzy msgid "Attach Failed." msgstr "Ошибка ÑозданиÑ" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "ОтÑоединить том %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "ОтÑоединить том %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "аттрибут не поддерживаетÑÑ: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Выделить адреÑ" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "ПриÑвоить Ð°Ð´Ñ€ÐµÑ %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 #, fuzzy msgid "Unable to release IP Address." msgstr "Ðевозможно найти Ð°Ð´Ñ€ÐµÑ %r" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "ПриÑвоить Ð°Ð´Ñ€ÐµÑ %(public_ip)s копии %(instance_id)s" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "Ðевозможно найти Ð°Ð´Ñ€ÐµÑ %r" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "Ðевозможно найти Ð°Ð´Ñ€ÐµÑ %r" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "ИÑключить Ð°Ð´Ñ€ÐµÑ %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "Образ должен быть доÑтупен" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "Выполнение Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ копий" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "Перезагрузить копию %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "Выполнение оÑтановки копий" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "Выполнение запуÑка копий" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "ИÑключение региÑтрации образа %s" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "ЗарегиÑтрированный образ %(image_location)s Ñ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€Ð¾Ð¼ %(image_id)s" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "не указан пользователь или группа" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ группа \"вÑе(all)\"" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "Обновление оÑведомлённоÑти об образе %s" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "Ðевозможно оÑтановить копию в течении %d Ñ." -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 #, fuzzy msgid "Expecting a list of resources" msgstr "Перечень копий" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "ÐºÐ¾Ð¿Ð¸Ñ - %s не предÑтавлена" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 #, fuzzy msgid "Expecting a list of tagSets" msgstr "Перечень копий" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 #, fuzzy msgid "Invalid CIDR" msgstr "ÐедопуÑтимый cidr %(cidr)s." @@ -2474,14 +2469,14 @@ msgstr "Узел %(host)s не найден." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "ÐšÐ¾Ð¿Ð¸Ñ Ð½Ðµ найдена" @@ -2611,143 +2606,143 @@ msgstr "Ðевозможно найти запрошенный образ" msgid "Invalid key_name provided." msgstr "ПредоÑтавлен недопуÑтимый key_name." -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "Точка Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð½Ðµ может быть переведена: %s" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "Точка Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð½Ðµ может быть переведена: %s" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "С копией не производилоÑÑŒ изменение размера." -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "ÐšÐ¾Ð¿Ð¸Ñ %(instance_id)s не найдена." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "ОтÑутÑтвует аргумент типа 'type' Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 #, fuzzy msgid "Resize requires a flavor change." msgstr "Изменение размера требует Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¾Ð±ÑŠÑ‘Ð¼Ð°." -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "ÐšÐ¾Ð¿Ð¸Ñ %(instance_id)s не найдена." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "ÐедопуÑтимый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñ‚ÐµÐ»Ð°" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "ОтÑутÑтвует атрибут imageRef" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "ОтÑутÑтвует атрибут flavorRef" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "adminPass не был задан" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "ÐедопуÑтимый adminPass" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Ошибка перезагрузки копии" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° имеет недопуÑтимый атрибут 'flavorRef'." -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "ЗапроÑÑ‹ изменение размера требуют атрибут 'flavorRef'." -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "ÐедопуÑтимый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñ‚ÐµÐ»Ð°" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, fuzzy, python-format msgid "Removing options '%s' from query" msgstr "Удаление параметров '%(unk_opt_str)s' из запроÑа" @@ -3052,7 +3047,7 @@ msgstr "Ошибка Ð¿ÐµÑ€ÐµÐ¼ÐµÑ‰ÐµÐ½Ð¸Ñ %s" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3155,7 +3150,7 @@ msgstr "" "%(instance_id)s" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3442,7 +3437,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 #, fuzzy msgid "Unknown service" msgstr "Ошибка аутентификации" @@ -3526,12 +3521,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3663,16 +3658,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "Ðе найден том Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %(instance_id)s." -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3684,7 +3679,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3732,20 +3727,20 @@ msgstr "Ñлемент не ÑвлÑетÑÑ Ð¿Ð¾Ñ‚Ð¾Ð¼ÐºÐ¾Ð¼" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3768,323 +3763,323 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "получено %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "Ошибка БД: %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "ВоÑÑтановление Ñети" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "Выделить адреÑ" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "Тип тома %(name)s уже ÑущеÑтвует." -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "IPv4" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "IPv6" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "проект" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "Сеть не найдена" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 #, fuzzy msgid "UUID is required to delete Quantum Networks" msgstr "%(req)s необходимо Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñети." -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "Выполнение оÑтановки копий" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "Служба %(service_id)s не найдена." -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "Служба %(service_id)s не найдена." -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "ÐÐµÐ¿Ñ€ÐµÐ´Ð²Ð¸Ð´ÐµÐ½Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 #, fuzzy msgid "PROJECT" msgstr "проект" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "ÐºÐ¾Ð¿Ð¸Ñ - %s не предÑтавлена" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 #, fuzzy msgid "Unknown error" msgstr "Ошибка аутентификации" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, fuzzy, python-format msgid "%s created" msgstr "Таблица |%s| не Ñоздана!" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "Ошибка БД: %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "тип = %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4554,7 +4549,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4577,7 +4572,7 @@ msgstr "Ошибка БД: %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4658,8 +4653,8 @@ msgstr "завершение работы bdm %s" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "%s. УÑтановка ÑоÑтоÑÐ½Ð¸Ñ ÐºÐ¾Ð¿Ð¸Ð¸ vm_state на ERROR" @@ -4815,148 +4810,148 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "%s. УÑтановка ÑоÑтоÑÐ½Ð¸Ñ ÐºÐ¾Ð¿Ð¸Ð¸ vm_state на ERROR" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "ÐšÐ¾Ð¿Ð¸Ñ Ð½Ðµ ÑущеÑтвует" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "назначение Ñовпадает Ñ Ð¸Ñточником!" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "ÐºÐ¾Ð¿Ð¸Ñ %s: принÑтие диагноÑтики" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "ВоÑÑтановление Ñети" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 #, fuzzy msgid "Inject network info" msgstr "уÑтановка Ñетевого узла" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "Получить конÑольный вывод Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %s" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 #, fuzzy msgid "Getting vnc console" msgstr "ÐºÐ¾Ð¿Ð¸Ñ %s: получение конÑоли vnc" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "ÐºÐ¾Ð¿Ð¸Ñ %s: получение конÑоли vnc" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "ОтÑоединение тома от неизвеÑтной копии %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "Попытка ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð½ÐµÑущеÑтвующей конÑоли %(console_id)s." -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, fuzzy, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "Ñетевые раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %s" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 #, fuzzy msgid "_post_live_migration() is started.." msgstr "Запущено post_live_migration().." -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." @@ -4965,21 +4960,21 @@ msgstr "" "отÑутÑтвует домен Ñ ÑоответÑтвующим именем.\" Ðта ошибка может быть " "безопаÑно пропущена." -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 #, fuzzy msgid "Post operation of migration started" msgstr "Запущено post_live_migration().." -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Ошибка Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¼ÐµÑ‚Ð°Ð´Ð°Ð½Ð½Ñ‹Ñ… Ð´Ð»Ñ ip: %s" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " @@ -4988,64 +4983,64 @@ msgstr "" "Ðайдены %(migration_count)d неподтверждённых перемещений, Ñтарше " "%(confirm_window)d Ñекунд" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, fuzzy, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "Завершение работы ВМ Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %(instance_uuid)s" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 #, fuzzy msgid "In ERROR state" msgstr "Ошибка БД: %s" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "Обновление временных данных иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ð¾Ð»Ð¾ÑÑ‹ пропуÑканиÑ" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Обновление временных данных иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ð¾Ð»Ð¾ÑÑ‹ пропуÑканиÑ" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "Обновление ÑоÑтоÑÐ½Ð¸Ñ ÑƒÐ·Ð»Ð°" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " @@ -5054,86 +5049,86 @@ msgstr "" "Ðайдено %(num_db_instances)s в базе данных и %(num_vm_instances)s в " "гипервизоре." -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "ÐºÐ¾Ð¿Ð¸Ñ Ð½Ðµ включена" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 #, fuzzy msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "FLAGS.reclaim_instance_interval <= 0, пропуÑк..." -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "LoggingVolumeDriver: %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, fuzzy, python-format msgid "No service record for host %s" msgstr "Ðет Ñлужбы Ð´Ð»Ñ compute ID %s" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "%s. УÑтановка ÑоÑтоÑÐ½Ð¸Ñ ÐºÐ¾Ð¿Ð¸Ð¸ vm_state на ERROR" @@ -5235,11 +5230,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "Ðевозможно найти узел Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %s" @@ -5369,44 +5364,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "ÐераÑпознанное значение read_deleted '%s'" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "ÐедопуÑтимый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñ‚ÐµÐ»Ð°" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "ÐедопуÑтимый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñ‚ÐµÐ»Ð°" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "ÐедопуÑтимый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñ‚ÐµÐ»Ð°" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "ÐедопуÑтимый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñ‚ÐµÐ»Ð°" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "ÐедопуÑтимый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñ‚ÐµÐ»Ð°" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5503,47 +5498,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "Удаление образа %s" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "Ошибка загрузки %(image_location)s в %(image_path)s" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "Ошибка раÑÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ %(image_location)s в %(image_path)s" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "Ошибка Ð¸Ð·Ð²Ð»ÐµÑ‡ÐµÐ½Ð¸Ñ %(image_location)s в %(image_path)s" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "Ошибка выгрузки %(image_location)s в %(image_path)s" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "Ошибка Ð´ÐµÑˆÐ¸Ñ„Ñ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð»Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ ключа: %s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "Ошибка Ð´ÐµÑˆÐ¸Ñ„Ñ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð²ÐµÐºÑ‚Ð¾Ñ€Ð° инициализации: %s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "Ошибка Ð´ÐµÑˆÐ¸Ñ„Ñ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð° образа %(image_file)s: %(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "Ð’ образе небезопаÑные имена файлов" @@ -5965,76 +5960,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -#, fuzzy -msgid "quantum authentication failed" -msgstr "Ошибка аутентификации" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" +msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, fuzzy, python-format msgid "allocate_for_instance() for %s" msgstr "Ñетевые раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %s" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "Ñетевые раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ %s" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Узел не найден" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, fuzzy, python-format msgid "deallocate_for_instance() for %s" msgstr "иÑключение Ñетевых раÑпределений Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ð¸ |%s|" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, fuzzy, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "Ошибка ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ñ‚Ð¾Ð¼Ð° в базе данных" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, fuzzy, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "Ошибка ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ñ‚Ð¾Ð¼Ð° в базе данных" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, fuzzy, python-format msgid "validate_networks() for %s" msgstr "ÐедопуÑтимый Ñетевой формат" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "уÑтановка Ñетевого узла" @@ -6136,12 +6131,12 @@ msgstr "Ошибка Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑÑ‚Ñ€Ð°Ñ‚Ð¾Ñ msgid "Invalid version string" msgstr "ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ server_string: %s" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6345,11 +6340,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7321,12 +7326,12 @@ msgstr "ПоÑле принудительного Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 #, fuzzy msgid "spawn error" msgstr "Ошибка аутентификации" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7523,20 +7528,20 @@ msgstr "Добавление правила группы безопаÑноÑтРmsgid "Adding provider rule: %s" msgstr "Добавление правила поÑтавщика: %s" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "Ошибка анализа 'qemu-img info'." -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "Преобразование в необработанный, но текущий формат %s" @@ -7799,15 +7804,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8865,7 +8870,7 @@ msgstr "Ошибка поиÑка vbd Ð´Ð»Ñ vdi %s" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11658,32 +11663,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "Ошибка в Ñоглашении: %s" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "ÐедопуÑтимый запроÑ: %s" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "ЗапроÑ: %s" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ Ñделан Ñ Ð¾Ñ‚ÑутÑтвующим токеном: %s" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ Ñделан Ñ Ð½ÐµÐ´Ð¾Ð¿ÑƒÑтимым токеном: %s" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "ÐÐµÐ¿Ñ€ÐµÐ´Ð²Ð¸Ð´ÐµÐ½Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°: %s" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "ЗапуÑк узла Ñети nova-xvpvncproxy (верÑÐ¸Ñ %s)" @@ -11703,9 +11708,9 @@ msgstr "Образ должен быть доÑтупен" msgid "status must be 'available'" msgstr "Образ должен быть доÑтупен" -#~ msgid "Cannot reboot instance: %s" -#~ msgstr "" +#~ msgid "Certificate %(certificate_id)s not found." +#~ msgstr "Сертификат %(certificate_id)s не найден." -#~ msgid "No Volume Connector found." -#~ msgstr "" +#~ msgid "quantum authentication failed" +#~ msgstr "Ошибка аутентификации" diff --git a/nova/locale/ru_RU/LC_MESSAGES/nova.po b/nova/locale/ru_RU/LC_MESSAGES/nova.po index b06680aa1..7164fb764 100644 --- a/nova/locale/ru_RU/LC_MESSAGES/nova.po +++ b/nova/locale/ru_RU/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Russian (Russia) " @@ -195,9 +195,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -675,188 +675,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1468,95 +1468,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1570,7 +1565,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1775,202 +1770,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2416,14 +2411,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2552,136 +2547,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2976,7 +2971,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3073,7 +3068,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3349,7 +3344,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3432,12 +3427,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3568,16 +3563,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3589,7 +3584,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3637,20 +3632,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3671,312 +3666,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4424,7 +4419,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4446,7 +4441,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4525,8 +4520,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4670,304 +4665,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5067,11 +5062,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5196,44 +5191,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5329,47 +5324,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5775,74 +5770,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5936,12 +5932,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6144,11 +6140,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7101,11 +7107,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7296,20 +7302,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7569,15 +7575,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8613,7 +8619,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11289,32 +11295,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11332,9 +11338,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/sw_KE/LC_MESSAGES/nova.po b/nova/locale/sw_KE/LC_MESSAGES/nova.po index 27d15ea14..e39a9da44 100644 --- a/nova/locale/sw_KE/LC_MESSAGES/nova.po +++ b/nova/locale/sw_KE/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Swahili (Kenya) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/tl/LC_MESSAGES/nova.po b/nova/locale/tl/LC_MESSAGES/nova.po index ac2a419c4..dc674ca30 100644 --- a/nova/locale/tl/LC_MESSAGES/nova.po +++ b/nova/locale/tl/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2011-08-23 11:21+0000\n" "Last-Translator: Thierry Carrez <thierry.carrez+lp@gmail.com>\n" "Language-Team: Tagalog <tl@li.org>\n" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -673,188 +673,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1466,95 +1466,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1568,7 +1563,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1773,202 +1768,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2414,14 +2409,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2550,136 +2545,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2974,7 +2969,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3071,7 +3066,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3347,7 +3342,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3430,12 +3425,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3566,16 +3561,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3587,7 +3582,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3635,20 +3630,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3669,313 +3664,313 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "natanggap %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/tr/LC_MESSAGES/nova.po b/nova/locale/tr/LC_MESSAGES/nova.po index 2200cba08..fb5e011e5 100644 --- a/nova/locale/tr/LC_MESSAGES/nova.po +++ b/nova/locale/tr/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2011-12-14 18:10+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Turkish <tr@li.org>\n" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -673,188 +673,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1466,95 +1466,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1568,7 +1563,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1773,202 +1768,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2414,14 +2409,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2550,136 +2545,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2974,7 +2969,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3071,7 +3066,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3347,7 +3342,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3430,12 +3425,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3566,16 +3561,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3587,7 +3582,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3635,20 +3630,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3669,312 +3664,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4422,7 +4417,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4444,7 +4439,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4523,8 +4518,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4668,304 +4663,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5065,11 +5060,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5194,44 +5189,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5327,47 +5322,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5773,74 +5768,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5934,12 +5930,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6142,11 +6138,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7099,11 +7105,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7294,20 +7300,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7567,15 +7573,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8611,7 +8617,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11287,32 +11293,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11330,9 +11336,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/tr_TR/LC_MESSAGES/nova.po b/nova/locale/tr_TR/LC_MESSAGES/nova.po index 542c9ae94..9d2610a81 100644 --- a/nova/locale/tr_TR/LC_MESSAGES/nova.po +++ b/nova/locale/tr_TR/LC_MESSAGES/nova.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-02-02 18:03+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: en_US <LL@li.org>\n" @@ -195,9 +195,9 @@ msgstr "Geçersiz giriÅŸ yapıldı" msgid "Invalid volume" msgstr "Geçersiz bölüm" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "Geçersiz metadata" @@ -689,93 +689,88 @@ msgstr "%(user_id)s kullanıcısı için %(name)s anahtar çifti bulunamadı" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "%(certificate_id)s sertifikası bulunamadı" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "%(service_id)s servisi bulunamadı." -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "%(host)s sunucusu bulunamadı." -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "%(host)s hesaplama sunucusu bulunamadı." -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "%(host)s sunucusunda %(binary)s ikilisi bulunamadı." -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "Kota bulunamadı." -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "%(project_id)s projesi için bir kota bulunamadı." -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "%(security_group_id)s güvenlik grubu bulunamadı." -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" "%(project_id)s projesi için %(security_group_id)s güvenlik grubu " "bulunamadı." -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "%(rule_id)s kurallı güvenlik grubu bulunamadı." -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " @@ -784,7 +779,7 @@ msgstr "" "%(security_group_id)s güvenlik grubu zaten %(instance_id)s örneÄŸi ile " "iliÅŸkilendirimiÅŸ." -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " @@ -793,37 +788,37 @@ msgstr "" "%(security_group_id)s güvenlik grubu %(instance_id)s örneÄŸi ile " "iliÅŸkilendirilmedi." -#: nova/exception.py:757 +#: nova/exception.py:753 #, fuzzy, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "%(rule_id)s kurallı güvenlik grubu bulunamadı." -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "%(migration_id)s göçü bulunamadı." -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "%(status)s durumuyla %(instance_id)s örneÄŸi için göç bulunamadı." -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "%(pool_id)s konsol havuzu bulunamadı." -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " @@ -832,53 +827,58 @@ msgstr "" "%(host)s roxy sunucusundaki %(compute_host)s hesaplama sunucusu için " "%(console_type)s türünün konsol havuzu bulunamadı." -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "%(console_id)s konsolu bulunamadı." -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "Geçersiz içerik türü %(content_type)s." -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "%(instance_type_id)s örnek türü bulunamadı" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "%(instance_type_name)s isimli örnek türü bulunamadı." -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "%(flavor_id)s örnek türü bulunamadı." -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "%(name)s örneÄŸi zaten var." +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1498,95 +1498,90 @@ msgstr "Couldn't get Link Local IP of %(interface)s :%(ex)s" msgid "Invalid backend: %s" msgstr "Geçersiz backend: %s" -#: nova/utils.py:436 -#, fuzzy, python-format -msgid "Unknown byte multiplier: %s" -msgstr "Bilinmeyen temel dosya: %s" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "Beklenen nesne türü: %s" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "Geçersiz server_string: %s" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "Zaman Fonksiyonu: %(name)s %(total_time).2f saniye sürdü" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, fuzzy, python-format msgid "%s is not a string or unicode" msgstr "%s güvenlik grubu string veya unicode deÄŸil" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "%r adresini bulmak olanaksız" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "%r adresini bulmak olanaksız" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "%r adresini bulmak olanaksız" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "WSGI sunucusu durduruluyor." -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "WSGI sunucusu durduruldu." -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "__call__ fonksiyonunu uygulamalısınız." -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1600,7 +1595,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1808,202 +1803,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "%s örneÄŸi için konsol çıktısını getir" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "%s sistem görüntüsünden birim oluÅŸtur" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "%s GB'lık birim oluÅŸtur" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "%(device)s'daki %(instance_id)s örneÄŸine %(volume_id)s birimini baÄŸla" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Birimi ayır %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "Özellik desteklenmiyor: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "birim = %s\n" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "Adres tahsisi" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "%s adresini serbest bırak" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "%(instance_id)s örneÄŸine %(public_ip)s adresini iliÅŸkilendir" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "Adresi kes %s" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "İmaj müsait olmak zorunda" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "Örnekleri sonlandırma iÅŸlemi baÅŸlatılıyor" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "%r örneÄŸini tekrar yükle" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "Örnekler durdurulacak" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "Örnekler baÅŸlatılacak" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "%s imaj kaydı siliniyor" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "%(image_id)s id ile %(image_location)s imajı kaydedildi" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "Kullanıcı veya grup belirlenmedi" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "Sadece \"all\" grubu destekleniyor" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "İşlem türü eklenmek veya kaldırılmak zorunda" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "%s imaj tanıtımı güncelleniyor" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "%d saniye içinde örnek durdurulamadı" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2454,14 +2449,14 @@ msgstr "%(flavor_id)s örnek türü bulunamadı." #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "Örnek bulunamadı." @@ -2590,145 +2585,145 @@ msgstr "İstenilen imaj dosyası bulunamadı" msgid "Invalid key_name provided." msgstr "Geçersiz anahtar adı verildi." -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "%s için kiÅŸisel içerik çözümlenemedi" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "Örnek tekrar boyutlandırılacak ÅŸekilde ayarlanmadı." -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "%(instance_id)s örneÄŸi bulunamadı." -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "Önyükleme için argüman türü HARD veya SOFT deÄŸil" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "Önyükleme için tür argümanı eksik" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "İstenilen örnek türü konumlandırılamıyor." -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "%(instance_id)s örneÄŸi bulunamadı." -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "%s geçerli bir örnek ismidir" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "İmaj referans özelliÄŸi eksik" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "Geçersiz imaj referansı verildi." -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "Örnek türü referans özelliÄŸi eksik" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "BelirlenmiÅŸ bir yönetici parolası yok" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "Geçersiz yönetici parolası" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "Örnek kapatmada hata oluÅŸtu." -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "Çözümlenemeyen metadata anahtar/deÄŸer çifti." -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" "Yeniden boyutlandırma isteÄŸi geçersiz örnek türü referansı özelliÄŸine " "sahip." -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" "Yeniden boyutlandırma isteÄŸi geçersiz örnek türü referansı özelliÄŸi " "gerektirir." -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "Geçersiz istek gövdesi" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "İstekte bulunulan imaj referansı çözümlenemedi." -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "Yeniden kurulum için imaj dosyası bulunamadı." -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "createImage varlığının isim özelliÄŸine ihtiyacı var" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, fuzzy, python-format msgid "Removing options '%s' from query" msgstr "Sorgudan '%(unk_opt_str)s' seçenekleri kaldırılıyor" @@ -3034,7 +3029,7 @@ msgstr "Göçte hata %s" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3133,7 +3128,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "%(address)s deÄŸiÅŸken IP adresi iliÅŸkilendirilemedi." #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3415,7 +3410,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 #, fuzzy msgid "Unknown service" msgstr "Kimlik doÄŸrulama hatası" @@ -3499,12 +3494,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, fuzzy, python-format msgid "Running _create_extension_point for %s" msgstr "GeniÅŸletme fabrikası çağırılıyor %s" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3636,16 +3631,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "%(instance_id)s örneÄŸi için aÄŸ bulunamadı." -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3657,7 +3652,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3705,20 +3700,20 @@ msgstr "eleman çocuk deÄŸil" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3739,323 +3734,323 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "Veritabanı hatası: %s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "BaÅŸlangıç adresi" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 #, fuzzy msgid "No fixed IP found." msgstr "Hiç dinamik IP bulunamadı." -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, fuzzy, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "Örnekle deÄŸiÅŸken IP iliÅŸkilendirilmedi" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "id" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "IPv4" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "IPv6" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "BaÅŸlangıç adresi" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "DNS1" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "DNS2" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "VlanID" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "proje" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "uuid" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "AÄŸ bulunamadı" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 #, fuzzy msgid "UUID is required to delete Quantum Networks" msgstr "AÄŸ oluÅŸturulurken %(req)s gereklidir." -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "%r örneÄŸini tekrar yükle" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "%(service_id)s servisi bulunamadı." -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "%(service_id)s servisi bulunamadı." -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "BeklenmeyenHata: %s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 #, fuzzy msgid "PROJECT" msgstr "proje" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 #, fuzzy msgid "Must supply valid parameters to create instance_type" msgstr "Örnek tür oluÅŸturulamıyor." -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "Örnek mevcut deÄŸil" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 #, fuzzy msgid "Unknown error" msgstr "Kimlik doÄŸrulama hatası" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 #, fuzzy msgid "Valid instance type name is required" msgstr "%s geçerli bir örnek ismidir" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "Veritabanı hatası: %s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "Veritabanı hatası: %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4509,7 +4504,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4532,7 +4527,7 @@ msgstr "Veritabanı hatası: %s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4612,8 +4607,8 @@ msgstr "Blok cihazı haritalandırması kapatılıyor %s" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4758,223 +4753,223 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "ÖrneÄŸin hiç bölümü yok." -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "dedef kaynak ile aynı!" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "Konsol ekleniyor" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "%(mountpoint)s'de %(volume_id)s bölümü ön yükleniyor" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "%(mountpoint)s'e %(volume_id)s bölümü baÄŸlanıyor" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "%(mp)s baÄŸlama noktasındaki %(volume_id)s bölümü ayrılıyor" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "%(mp)s baÄŸlama noktasındaki %(volume_id)s bölümü ayrılıyor" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "Tekrar yükleme örneÄŸinde hata oluÅŸtu." -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "Bant geniÅŸliÄŸi kullanım önbelleÄŸi güncelleniyor" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Bant geniÅŸliÄŸi kullanım önbelleÄŸi güncelleniyor" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "Sunucu durumu güncelleniyor" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " @@ -4983,84 +4978,84 @@ msgstr "" "Veritabanında %(num_db_instances)s ve misafir sistemde " "%(num_vm_instances)s bulundu" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "Silinen örnek kurtarılıyor" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "İmaj siliniyor %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5161,11 +5156,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "%s örneÄŸi için sunucu bulma baÅŸarısız" @@ -5293,44 +5288,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "Tanınmayan silinmiÅŸ okuma deÄŸeri '%s'" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "%s geçerli bir örnek ismidir" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "%s geçerli bir örnek ismidir" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "%s geçerli bir örnek ismidir" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "%s geçerli bir örnek ismidir" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "%s geçerli bir örnek ismidir" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5427,47 +5422,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "İmaj siliniyor %s" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "%(image_path)si için %(image_location)s indirme iÅŸlemi baÅŸarısız" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "%(image_path)s için %(image_location)s çözümü baÅŸarısız" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "%(image_path)s için %(image_location)s çıkarma iÅŸlemi baÅŸarısız" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "%(image_path)s için %(image_location)s yükleme iÅŸlemi baÅŸarısız" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "Özel anahtar çözümü baÅŸarısız: %s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "BaÅŸlatma vektörü çözümü baÅŸarısız: %s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "%(image_file)s imaj dosyası çözümü baÅŸarısız: %(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "İmajda güvenliksiz dosya isimleri var" @@ -5875,76 +5870,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "miras nw_info için v4 alt aÄŸları gerekiyor" -#: nova/network/quantumv2/__init__.py:67 -#, fuzzy -msgid "quantum authentication failed" -msgstr "Kimlik doÄŸrulama hatası" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" +msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "Öğe bulunamadı" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -6046,12 +6041,12 @@ msgstr "XVP baÅŸlatılırken hata oluÅŸtu: %s" msgid "Invalid version string" msgstr "Geçersiz server_string: %s" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6254,11 +6249,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, fuzzy, python-format +msgid "Unknown byte multiplier: %s" +msgstr "Bilinmeyen temel dosya: %s" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "Veritabanı istisnası yakalandı." @@ -7215,12 +7220,12 @@ msgstr "Zorla öldürülen örneklerin ardından: %s" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 #, fuzzy msgid "spawn error" msgstr "Kimlik doÄŸrulama hatası" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7416,20 +7421,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7693,15 +7698,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8741,7 +8746,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11442,32 +11447,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11487,9 +11492,9 @@ msgstr "İmaj müsait olmak zorunda" msgid "status must be 'available'" msgstr "İmaj müsait olmak zorunda" -#~ msgid "Cannot reboot instance: %s" -#~ msgstr "" +#~ msgid "Certificate %(certificate_id)s not found." +#~ msgstr "%(certificate_id)s sertifikası bulunamadı" -#~ msgid "No Volume Connector found." -#~ msgstr "" +#~ msgid "quantum authentication failed" +#~ msgstr "Kimlik doÄŸrulama hatası" diff --git a/nova/locale/uk/LC_MESSAGES/nova.po b/nova/locale/uk/LC_MESSAGES/nova.po index 1ae68e61a..6095be0c7 100644 --- a/nova/locale/uk/LC_MESSAGES/nova.po +++ b/nova/locale/uk/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2011-08-23 11:21+0000\n" "Last-Translator: Thierry Carrez <thierry.carrez+lp@gmail.com>\n" "Language-Team: Ukrainian <uk@li.org>\n" @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1775,203 +1770,203 @@ msgstr "Це правило вже Ñ–Ñнує в групі %s" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "Створити розділ на %s ГБ" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "Від'єднати том %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "Від'єднати том %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "лише група \"вÑÑ–\" підтримуєтьÑÑ" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2417,14 +2412,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2553,136 +2548,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2977,7 +2972,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3074,7 +3069,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3351,7 +3346,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3434,12 +3429,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3570,16 +3565,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3591,7 +3586,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3639,20 +3634,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3673,313 +3668,313 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "отримано %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4427,7 +4422,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4449,7 +4444,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4528,8 +4523,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4673,305 +4668,305 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "Від'єднати том %s" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "Від'єднати том %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5071,11 +5066,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5200,44 +5195,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5333,47 +5328,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5779,74 +5774,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5941,12 +5937,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6149,11 +6145,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7106,11 +7112,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7301,20 +7307,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7574,15 +7580,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8618,7 +8624,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11295,32 +11301,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11338,9 +11344,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/vi_VN/LC_MESSAGES/nova.po b/nova/locale/vi_VN/LC_MESSAGES/nova.po index 518f12938..f5eec9a87 100644 --- a/nova/locale/vi_VN/LC_MESSAGES/nova.po +++ b/nova/locale/vi_VN/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-13 19:22+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Vietnamese (Viet Nam) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/zh_CN/LC_MESSAGES/nova.po b/nova/locale/zh_CN/LC_MESSAGES/nova.po index ae45d17ed..55d5c6e95 100644 --- a/nova/locale/zh_CN/LC_MESSAGES/nova.po +++ b/nova/locale/zh_CN/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-05-07 06:51+0000\n" "Last-Translator: Edward <Unknown>\n" "Language-Team: Chinese (Simplified) <zh_CN@li.org>\n" @@ -196,9 +196,9 @@ msgstr "æ”¶åˆ°æ— æ•ˆçš„è¾“å…¥" msgid "Invalid volume" msgstr "æ— æ•ˆçš„å·" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "æ— æ•ˆçš„å…ƒæ•°æ®" @@ -683,188 +683,188 @@ msgstr "密钥对 %(name)s 没有为用户 %(user_id)s 找到。" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "è¯ä¹¦ %(certificate_id)s 没有找到。" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "æœåŠ¡ %(service_id)s 没有找到。" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "主机 %(host)s 没有找到。" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "计算主机 %(host)s 没有找到。" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "没有找到二进制 %(binary)s 在主机 %(host)s 上。" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "é…颿²¡æœ‰æ‰¾åˆ°ã€‚" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "没有为项目 %(project_id)s 找到é…é¢ã€‚" -#: nova/exception.py:718 +#: nova/exception.py:714 #, fuzzy, python-format msgid "Quota class %(class_name)s could not be found." msgstr "找ä¸åˆ°ç±» %(class_name)s :异常 %(exception)s" -#: nova/exception.py:722 +#: nova/exception.py:718 #, fuzzy, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "没有为项目 %(project_id)s 找到é…é¢ã€‚" -#: nova/exception.py:726 +#: nova/exception.py:722 #, fuzzy, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "用户 %(user_id)s 没有找到。" -#: nova/exception.py:730 +#: nova/exception.py:726 #, fuzzy, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "扩展资æºï¼š%s" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "安全组 %(security_group_id)s 没有找到。" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "没有找到安全组 %(security_group_id)s 针对项目 %(project_id)s 。" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "带有规则 %(rule_id)s 的安全组没有找到。" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "安全组 %(security_group_id)s å·²ç»ä¸Žå®žä¾‹ %(instance_id)s å…³è”。" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "安全组 %(security_group_id)s 没有与实例 %(instance_id)s å…³è”。" -#: nova/exception.py:757 +#: nova/exception.py:753 #, fuzzy, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "带有规则 %(rule_id)s 的安全组没有找到。" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "è¿ç§» %(migration_id)s 没有找到。" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "没有为实例 %(instance_id)s 找到è¿ç§»å…¶çжæ€ä¸º %(status)s 。" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "æŽ§åˆ¶å°æ± %(pool_id)s 没有找到。" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "没有找到类型是 %(console_type)s çš„æŽ§åˆ¶å°æ± 针对计算主机 %(compute_host)s 在代ç†ä¸»æœº %(host)s 上。" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "控制å°%(console_id)s 没有找到。" -#: nova/exception.py:794 +#: nova/exception.py:790 #, fuzzy, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "没有为实例 %(instance_id)s 找到控制å°ã€‚" -#: nova/exception.py:798 +#: nova/exception.py:794 #, fuzzy, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "没有为实例 %(instance_id)s åœ¨æ± %(pool_id)s 䏿‰¾åˆ°æŽ§åˆ¶å°ã€‚" -#: nova/exception.py:803 +#: nova/exception.py:799 #, fuzzy, python-format msgid "Invalid console type %(console_type)s" msgstr "æ— æ•ˆçš„æŽ§åˆ¶å°ç±»åž‹ %(console_type)s " -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "实例类型 %(instance_type_id)s 没有找到。" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "å为 %(instance_type_name)s 的实例类型没有找到。" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "类型 %(flavor_id)s 没有找到。" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, fuzzy, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "å·ç»„ %s ä¸å˜åœ¨" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1485,95 +1485,90 @@ msgstr "æ— æ³•è¿žæŽ¥åˆ° %(interface)s 的本地IP:%(ex)s" msgid "Invalid backend: %s" msgstr "æ— æ•ˆçš„åŽå°ï¼š%s" -#: nova/utils.py:436 -#, fuzzy, python-format -msgid "Unknown byte multiplier: %s" -msgstr "未知的基文件:%s" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "期望的对象类型:%s" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "䏿£ç¡®çš„server_string:%s" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "timefunc:'%(name)s' 用了%(total_time).2f ç§’" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, fuzzy, python-format msgid "Reloading cached file %s" msgstr "æ£åœ¨åˆ 除基文件:%s" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, fuzzy, python-format msgid "Could not remove tmpdir: %s" msgstr "移除容器失败:%s" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, fuzzy, python-format msgid "%s is not a string or unicode" msgstr "æœåС噍åç§°ä¸æ˜¯å—符串或者unicode" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, fuzzy, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "密钥对å称长度必须在1到255个å—符之间" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, fuzzy, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "å¯åЍ%(name)s ä½ç½®åœ¨ %(host)s:%(port)s" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "æ— æ³•æ‰¾åˆ°åœ°å€ %r" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "æ— æ³•æ‰¾åˆ°åœ°å€ %r" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "æ— æ³•æ‰¾åˆ°åœ°å€ %r" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "å…³é—WSGIæœåС噍" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "WSGIæœåС噍已ç»åœæ¢ã€‚" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "ä½ å¿…é¡»æ‰§è¡Œ __call__" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, fuzzy, python-format msgid "Loading app %(name)s from %(path)s" msgstr "æ— æ³•ä»Žè·¯å¾„ %(path)s ä¸åŠ è½½åº”ç”¨ '%(name)s'" @@ -1587,7 +1582,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1793,215 +1788,215 @@ msgstr "è¿™æ¡è§„则已ç»å˜åœ¨äºŽç»„%s ä¸" msgid "Get console output for instance %s" msgstr "获å–实例 %s 控制å°è¾“出" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "从快照 %s 创建å·" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "创建 %s GBçš„å·" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 #, fuzzy msgid "Delete Failed" msgstr "创建失败" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "æŠŠå· %(volume_id)s é™„åŠ åˆ°å®žä¾‹ %(instance_id)s 上ä½ç½®åœ¨ %(device)s" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 #, fuzzy msgid "Attach Failed." msgstr "创建失败" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "åˆ†ç¦»å· %s" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 #, fuzzy msgid "Detach Volume Failed." msgstr "åˆ†ç¦»å· %s" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "å±žæ€§ä¸æ”¯æŒ: %s" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "vol = %s\n" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "分é…地å€" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 #, fuzzy msgid "No more floating IPs available" msgstr "没有更多的浮动ip。" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "é‡Šæ”¾åœ°å€ %s" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 #, fuzzy msgid "Unable to release IP Address." msgstr "æ— æ³•æ‰¾åˆ°åœ°å€ %r" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "æŠŠåœ°å€ %(public_ip)s å…³è”到实例 %(instance_id)s" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 #, fuzzy msgid "Unable to associate IP Address, no fixed_ips." msgstr "æ— æ³•æ‰¾åˆ°åœ°å€ %r" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, fuzzy, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "å˜åœ¨å¤šä¸ªå›ºå®šIP,使用第一个:%s" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 #, fuzzy msgid "Floating ip is already associated." msgstr "浮动ip %(address)s 已被关è”。" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 #, fuzzy msgid "l3driver call to add floating ip failed." msgstr "没有浮动IPå¯ç”¨ã€‚" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 #, fuzzy msgid "Error, unable to associate floating ip." msgstr "æ— æ³•æ‰¾åˆ°åœ°å€ %r" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "å–æ¶ˆåœ°å€ %s 的关è”" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 #, fuzzy msgid "Floating ip is not associated." msgstr "浮动ip %(address)s 没有被关è”。" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "镜åƒå¿…é¡»å¯ç”¨ã€‚" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "准备开始终æ¢å®žä¾‹" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "é‡å¯å®žä¾‹ %r" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "å‡†å¤‡åœæ¢å®žä¾‹" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "准备å¯åŠ¨å®žä¾‹" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "è§£é™¤é•œåƒ %s 的注册" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "用id %(image_id)s æ³¨å†Œé•œåƒ %(image_location)s" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "用户或者组没有确定" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "仅仅支æŒç»„\"all\"" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "operation_typeå¿…é¡»æ·»åŠ æˆ–è€…ç§»é™¤" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "æ£åœ¨æ›´æ–°é•œåƒ %s çš„ publicity 属性" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "æ— æ³•åœ¨ %d ç§’å†…åœæ¢å®žä¾‹" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 #, fuzzy msgid "Expecting a list of resources" msgstr "获å–实例列表" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 #, fuzzy msgid "Only instances implemented" msgstr "实例 - %s ä¸å˜åœ¨" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 #, fuzzy msgid "Expecting a list of tagSets" msgstr "获å–实例列表" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 #, fuzzy msgid "Invalid CIDR" msgstr "æ— æ•ˆçš„" @@ -2452,14 +2447,14 @@ msgstr "主机 %(host)s 没有找到。" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "æ— æ³•æ‰¾åˆ°å®žä¾‹" @@ -2592,143 +2587,143 @@ msgstr "æ— æ³•æ‰¾åˆ°è¯·æ±‚çš„é•œåƒ" msgid "Invalid key_name provided." msgstr "æä¾›äº†æ— 效的key_name。" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 #, fuzzy msgid "HostId cannot be updated." msgstr "idä¸èƒ½æ˜¯None" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 #, fuzzy msgid "Personality cannot be updated." msgstr "idä¸èƒ½æ˜¯None" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "实例还没有调整大å°ã€‚" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 #, fuzzy msgid "Flavor used by the instance could not be found." msgstr "实例 %(instance_id)s 没有找到。" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "é‡å¯çš„傿•°'type'æ—¢ä¸æ˜¯HARDä¹Ÿä¸æ˜¯SOFT" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "缺少é‡å¯çš„傿•°'type'" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "æ— æ³•æ‰¾åˆ°è¯·æ±‚çš„ç±»åž‹ã€‚" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 #, fuzzy msgid "Resize requires a flavor change." msgstr "调整大å°éœ€è¦å°ºå¯¸çš„æ”¹å˜ã€‚" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 #, fuzzy msgid "Image that the instance was started with could not be found." msgstr "实例 %(instance_id)s 没有找到。" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "%s 是一个æ£ç¡®çš„实例åç§°" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "缺少属性imageRef" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "æä¾›äº†æ— 效的imageRef。" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "缺少属性flavorRef" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "没有确定adminPass" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "æ— æ•ˆçš„adminPass" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 #, fuzzy msgid "Unable to set password on instance" msgstr "釿–°å¯åŠ¨å®žä¾‹å¤±è´¥" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "æ— æ³•è§£æžå…ƒæ•°æ®é”®/值对" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "调整大å°è¯·æ±‚ä¸çš„属性'flavorRef'æ— æ•ˆã€‚" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "调整大å°è¯·æ±‚è¦æ±‚有属性'flavorRef'。" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "æ— æ•ˆçš„è¯·æ±‚ä¸»ä½“" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "æ— æ³•è§£æžè¯·æ±‚ä¸çš„imageRef。" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "æ— æ³•æ‰¾åˆ°ç”¨æ¥é‡æ–°åˆ›å»ºçš„镜åƒ" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "实体createImage需è¦å±žæ€§name" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, fuzzy, python-format msgid "Removing options '%s' from query" msgstr "æ£åœ¨ä»ŽæŸ¥è¯¢è¯å¥ä¸ç§»é™¤é€‰é¡¹ '%(unk_opt_str)s'" @@ -3035,7 +3030,7 @@ msgstr "è¿ç§»é”™è¯¯ %s" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, fuzzy, python-format msgid "Fixed IP %s not found" @@ -3140,7 +3135,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "浮动ip %(address)s 没有被关è”。" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3427,7 +3422,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 #, fuzzy msgid "Unknown service" msgstr "未知的guestmount错误" @@ -3511,12 +3506,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, fuzzy, python-format msgid "Running _create_extension_point for %s" msgstr "调用扩展工厂 %s" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3648,16 +3643,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "没有为实例 %(instance_id)s 找到å·ã€‚" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3669,7 +3664,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3717,20 +3712,20 @@ msgstr "å…ƒç´ ä¸æ˜¯å节点" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3753,326 +3748,326 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 #, fuzzy msgid "Reserved" msgstr "已接收 %s" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, fuzzy, python-format msgid "error: %s" msgstr "æ•°æ®åº“错误:%s" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 #, fuzzy msgid "network" msgstr "é‡ç½®ç½‘络" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 #, fuzzy msgid "IP address" msgstr "起始地å€" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 #, fuzzy msgid "No fixed IP found." msgstr "找ä¸åˆ°å›ºå®šIP。" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, fuzzy, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "没有固定ip与实例关è”" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 #, fuzzy msgid "No floating IP addresses have been defined." msgstr "浮动ip %(address)s 已被关è”。" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "id" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "IPv4" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "IPv6" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "起始地å€" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "DNS1" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "DNS2" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "VlanID" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "项目" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "uuid" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 #, fuzzy msgid "No networks found" msgstr "没有找到网络" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 #, fuzzy msgid "UUID is required to delete Quantum Networks" msgstr "创建网络 %(req)s 是必è¦çš„。" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 #, fuzzy msgid "instance" msgstr "åœæ¢å®žä¾‹ %r" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "æœåŠ¡ %(service_id)s 没有找到。" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, fuzzy, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "æœåŠ¡ %(service_id)s 没有找到。" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 #, fuzzy msgid "An unexpected error has occurred." msgstr "æ„外错误:%s" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 #, fuzzy msgid "PROJECT" msgstr "项目" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 #, fuzzy msgid "Must supply valid parameters to create instance_type" msgstr "æ— æ³•åˆ›å»ºå®žä¾‹ç±»åž‹ã€‚" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 #, fuzzy msgid "Instance Type exists." msgstr "实例 - %s ä¸å˜åœ¨" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 #, fuzzy msgid "Unknown error" msgstr "未知的guestmount错误" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, fuzzy, python-format msgid "%s created" msgstr "表 |%s| 没有创建" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 #, fuzzy msgid "Valid instance type name is required" msgstr "%s 是一个æ£ç¡®çš„实例åç§°" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, fuzzy, python-format msgid "DB Error: %s" msgstr "æ•°æ®åº“错误:%s" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, fuzzy, python-format msgid "Hypervisor: %s" msgstr "类型is = %s" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4537,7 +4532,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4561,7 +4556,7 @@ msgstr "æ•°æ®åº“错误:%s" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4642,8 +4637,8 @@ msgstr "终æ¢bdm %s" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "%s。把实例的 vm_state设置为ERROR" @@ -4796,149 +4791,149 @@ msgstr "实例 %sï¼šå–æ¶ˆæ•‘æ´" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, fuzzy, python-format msgid "Updating instance to original state: '%s'" msgstr "设置实例 %(instance_uuid)s 至 ERROR 状æ€" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 #, fuzzy msgid "Instance has no source host" msgstr "实例没有å·ã€‚" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "ç›®æ ‡ä¸Žæ¥æºä¸€æ ·ã€‚" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 #, fuzzy msgid "Pausing" msgstr "æ£åœ¨æ›´æ–°ã€‚" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 #, fuzzy msgid "Retrieving diagnostics" msgstr "实例 %s :获å–诊æ–" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 #, fuzzy msgid "Reset network" msgstr "é‡ç½®ç½‘络" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 #, fuzzy msgid "Inject network info" msgstr "实例 %s:注入网络信æ¯" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "将注入的network_info:|%s|" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 #, fuzzy msgid "Get console output" msgstr "获å–实例 %s 控制å°è¾“出" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 #, fuzzy msgid "Getting vnc console" msgstr "实例 %s:æ£åœ¨èŽ·å¾—VNC控制å°" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 #, fuzzy msgid "Getting spice console" msgstr "实例 %s:æ£åœ¨èŽ·å¾—VNC控制å°" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "å· %(volume_id)s æ£åœ¨ %(mountpoint)s 上å¯åЍ" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "æ£åœ¨æŠŠå· %(volume_id)s é™„åŠ åˆ° %(mountpoint)s" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, fuzzy, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "å· %(volume_id)s æ£åœ¨ %(mountpoint)s 上å¯åЍ" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "æ£åœ¨æŠŠå· %(volume_id)s é™„åŠ åˆ° %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "å· %(volume_id)s 从挂载点 %(mp)s 分离" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "从未知实例%sä¸åˆ†ç¦»å·" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "æ£åœ¨æŠŠå· %(volume_id)s é™„åŠ åˆ° %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, fuzzy, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "实例 %s 的网络分é…" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 #, fuzzy msgid "_post_live_migration() is started.." msgstr "post_live_migration()å·²ç»å¯åŠ¨ã€‚" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." @@ -4946,171 +4941,171 @@ msgstr "" "ä½ ä¼šçœ‹åˆ°é”™è¯¯â€œlibvirt: QEMU error: Domain not found: no domain with matching " "name。â€è¿™ä¸ªé”™è¯¯å¯ä»¥æ”¾å¿ƒçš„忽略。" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 #, fuzzy msgid "Post operation of migration started" msgstr "è¿ç§»åŽæ“作å¯åЍ" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, fuzzy, python-format msgid "Failed to get compute_info for %s" msgstr "为ip: %s获å–元数æ®å¤±è´¥" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "å‘现 %(migration_count)d 个超过 %(confirm_window)d 秒未ç»ç¡®è®¤çš„è¿ç§»" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, fuzzy, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "为实例 %(instance_uuid)s å…³é—虚拟机" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 #, fuzzy msgid "In ERROR state" msgstr "节点处于未知的错误状æ€ã€‚" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "更新带宽使用缓å˜" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 #, fuzzy msgid "Updating volume usage cache" msgstr "更新带宽使用缓å˜" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "更新主机状æ€" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "在数æ®åº“䏿‰¾åˆ° %(num_db_instances)s个实例,在虚拟机管ç†ç¨‹åºæ‰¾åˆ° %(num_vm_instances)s 个实例。" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 #, fuzzy msgid "Instance is not (soft-)deleted." msgstr "实例未å¯åЍ" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 #, fuzzy msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "FLAGS.reclaim_instance_interval <= 0,跳过..." -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "å›žæ”¶åˆ é™¤çš„å®žä¾‹" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, fuzzy, python-format msgid "Deleting orphan compute node %s" msgstr "LoggingVolumeDriver: %s" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, fuzzy, python-format msgid "No service record for host %s" msgstr "计算节点 %s 没有æœåŠ¡" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, fuzzy, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "设置实例 %(instance_uuid)s 至 ERROR 状æ€" @@ -5212,11 +5207,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "未指定计算宿主机" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "æ— æ³•æ‰¾åˆ°å®žä¾‹ %s 的宿主机" @@ -5346,44 +5341,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "æ— æ³•è¯†åˆ«çš„ read_deleted å–值â€%s“" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, fuzzy, python-format msgid "Invalid floating ip id %s in request" msgstr "实例 %s:已救æ´" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, fuzzy, python-format msgid "Invalid floating IP %s in request" msgstr "实例 %s:已救æ´" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, fuzzy, python-format msgid "Invalid fixed IP Address %s in request" msgstr "实例 %s:已救æ´" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, fuzzy, python-format msgid "Invalid virtual interface address %s in request" msgstr "实例 %s:已救æ´" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, fuzzy, python-format msgid "Invalid instance id %s in request" msgstr "实例 %s:已救æ´" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5481,47 +5476,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "æ£åœ¨ä»Žglanceé•œåƒæœåС噍ä¸ä¸‹è½½é•œåƒ %s" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "把 %(image_location)s 下载到 %(image_path)s失败" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "解密 %(image_location)s 到 %(image_path)s失败" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "解包 %(image_location)s 到 %(image_path)s 失败" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "ä¸Šä¼ %(image_location)s 到 %(image_path)s 失败" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "解密ç§é’¥å¤±è´¥ï¼š%s" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "解密åˆå§‹åŒ–vector失败:%s" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "è§£å¯†é•œåƒæ–‡ä»¶ %(image_file)s 失败:%(err)s" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "镜åƒä¸ä¸å®‰å…¨çš„æ–‡ä»¶å" @@ -5935,76 +5930,76 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "é—ç•™çš„ç½‘ç»œä¿¡æ¯ nw_info è¦æ±‚使用 IPv4 å网" -#: nova/network/quantumv2/__init__.py:67 -#, fuzzy -msgid "quantum authentication failed" -msgstr "认è¯é”™è¯¯" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" +msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, fuzzy, python-format msgid "allocate_for_instance() for %s" msgstr "实例 %s 的网络分é…" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, fuzzy, python-format msgid "empty project id for instance %s" msgstr "实例 %s 的网络分é…" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 #, fuzzy msgid "Port not found" msgstr "没有找到主机" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, fuzzy, python-format msgid "deallocate_for_instance() for %s" msgstr "为实例 |%s| 解除网络分é…" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, fuzzy, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "在数æ®åº“åˆ é™¤å·å¤±è´¥" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, fuzzy, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "在数æ®åº“åˆ é™¤å·å¤±è´¥" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, fuzzy, python-format msgid "get_instance_nw_info() for %s" msgstr "实例的network_info:|%s|" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, fuzzy, python-format msgid "validate_networks() for %s" msgstr "é”™è¯¯çš„ç½‘ç»œæ ¼å¼" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, fuzzy, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "找ä¸åˆ°é€‚åˆid %(id)s 的浮动IP。" @@ -6102,12 +6097,12 @@ msgstr "设置管ç†å‘˜å¯†ç 出错" msgid "Invalid version string" msgstr "䏿£ç¡®çš„server_string:%s" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6313,11 +6308,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, fuzzy, python-format +msgid "Unknown byte multiplier: %s" +msgstr "未知的基文件:%s" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "æ•°æ®åº“异常被包裹。" @@ -7285,12 +7290,12 @@ msgstr "å¼ºåˆ¶æ€æ»å®žä¾‹åŽï¼š%s" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 #, fuzzy msgid "spawn error" msgstr "未知的guestmount错误" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7489,20 +7494,20 @@ msgstr "æ·»åŠ å®‰å…¨ç»„è§„åˆ™ï¼š%r" msgid "Adding provider rule: %s" msgstr "æ·»åŠ æä¾›è€…规则:%s" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "'qemu-img info'è§£æžå¤±è´¥" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "fmt=%(fmt)s ç”± %(backing_file)s 支æŒ" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "è½¬åŒ–ä¸ºè£¸æ ¼å¼ï¼Œä½†ç›®å‰æ ¼å¼æ˜¯ %s" @@ -7768,15 +7773,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8840,7 +8845,7 @@ msgstr "æ— æ³•ä¸ºVDI %s 找到VBD" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11629,32 +11634,32 @@ msgstr "未知的基文件:%s" msgid "Error in handshake: %s" msgstr "æ¡æ‰‹å‡ºé”™ï¼š%s" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "æ— æ•ˆçš„è¯·æ±‚ï¼š%s" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "请求:%s" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "请求缺少令牌:%s" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "è¯·æ±‚ä¸æœ‰æ— 效令牌:%s" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "æ„外错误:%s" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "å¯åЍnova-xvpvncproxy节点(版本 %s)" @@ -11674,9 +11679,9 @@ msgstr "状æ€å¿…é¡»å¯ç”¨" msgid "status must be 'available'" msgstr "状æ€å¿…é¡»å¯ç”¨" -#~ msgid "Cannot reboot instance: %s" -#~ msgstr "" +#~ msgid "Certificate %(certificate_id)s not found." +#~ msgstr "è¯ä¹¦ %(certificate_id)s 没有找到。" -#~ msgid "No Volume Connector found." -#~ msgstr "" +#~ msgid "quantum authentication failed" +#~ msgstr "认è¯é”™è¯¯" diff --git a/nova/locale/zh_HK/LC_MESSAGES/nova.po b/nova/locale/zh_HK/LC_MESSAGES/nova.po index 1c9a4c81d..539252510 100644 --- a/nova/locale/zh_HK/LC_MESSAGES/nova.po +++ b/nova/locale/zh_HK/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Nova\n" "Report-Msgid-Bugs-To: https://bugs.launchpad.net/nova\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2013-05-28 17:08+0000\n" "Last-Translator: openstackjenkins <jenkins@openstack.org>\n" "Language-Team: Chinese (Hong Kong) " @@ -194,9 +194,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, python-format msgid "Unable to find cert_file : %s" msgstr "" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, python-format msgid "Unable to find ca_file : %s" msgstr "" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, python-format msgid "Unable to find key_file : %s" msgstr "" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2415,14 +2410,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2551,136 +2546,136 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 msgid "Invalid instance image." msgstr "" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2975,7 +2970,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3072,7 +3067,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3348,7 +3343,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3431,12 +3426,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3567,16 +3562,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3588,7 +3583,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3636,20 +3631,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3670,312 +3665,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4423,7 +4418,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4445,7 +4440,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4524,8 +4519,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4669,304 +4664,304 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 msgid "Detaching volume from unknown instance" msgstr "" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5066,11 +5061,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5195,44 +5190,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5328,47 +5323,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5774,74 +5769,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5935,12 +5931,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6143,11 +6139,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7100,11 +7106,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7295,20 +7301,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7568,15 +7574,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8612,7 +8618,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11288,32 +11294,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11331,9 +11337,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/locale/zh_TW/LC_MESSAGES/nova.po b/nova/locale/zh_TW/LC_MESSAGES/nova.po index 72ee1c068..f48f2d168 100644 --- a/nova/locale/zh_TW/LC_MESSAGES/nova.po +++ b/nova/locale/zh_TW/LC_MESSAGES/nova.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nova\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2013-06-17 19:37+0000\n" +"POT-Creation-Date: 2013-06-19 19:38+0000\n" "PO-Revision-Date: 2012-03-07 02:00+0000\n" "Last-Translator: Charles Hsu <charles0126+openstack@gmail.com>\n" "Language-Team: Chinese (Traditional) <zh_TW@li.org>\n" @@ -193,9 +193,9 @@ msgstr "" msgid "Invalid volume" msgstr "" -#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1341 +#: nova/exception.py:262 nova/api/openstack/compute/servers.py:1338 #: nova/api/openstack/compute/contrib/admin_actions.py:242 -#: nova/api/openstack/compute/plugins/v3/servers.py:1429 +#: nova/api/openstack/compute/plugins/v3/servers.py:1426 msgid "Invalid metadata" msgstr "" @@ -674,188 +674,188 @@ msgstr "" #: nova/exception.py:677 #, python-format -msgid "Certificate %(certificate_id)s not found." -msgstr "" - -#: nova/exception.py:681 -#, python-format msgid "Service %(service_id)s could not be found." msgstr "" -#: nova/exception.py:685 +#: nova/exception.py:681 #, python-format msgid "Host %(host)s could not be found." msgstr "" -#: nova/exception.py:689 +#: nova/exception.py:685 #, python-format msgid "Compute host %(host)s could not be found." msgstr "" -#: nova/exception.py:693 +#: nova/exception.py:689 #, python-format msgid "Could not find binary %(binary)s on host %(host)s." msgstr "" -#: nova/exception.py:697 +#: nova/exception.py:693 #, python-format msgid "Invalid reservation expiration %(expire)s." msgstr "" -#: nova/exception.py:701 +#: nova/exception.py:697 #, python-format msgid "" "Change would make usage less than 0 for the following resources: " "%(unders)s" msgstr "" -#: nova/exception.py:706 +#: nova/exception.py:702 msgid "Quota could not be found" msgstr "" -#: nova/exception.py:710 +#: nova/exception.py:706 #, python-format msgid "Unknown quota resources %(unknown)s." msgstr "" -#: nova/exception.py:714 +#: nova/exception.py:710 #, python-format msgid "Quota for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:718 +#: nova/exception.py:714 #, python-format msgid "Quota class %(class_name)s could not be found." msgstr "" -#: nova/exception.py:722 +#: nova/exception.py:718 #, python-format msgid "Quota usage for project %(project_id)s could not be found." msgstr "" -#: nova/exception.py:726 +#: nova/exception.py:722 #, python-format msgid "Quota reservation %(uuid)s could not be found." msgstr "" -#: nova/exception.py:730 +#: nova/exception.py:726 #, python-format msgid "Quota exceeded for resources: %(overs)s" msgstr "" -#: nova/exception.py:734 +#: nova/exception.py:730 #, python-format msgid "Security group %(security_group_id)s not found." msgstr "" -#: nova/exception.py:738 +#: nova/exception.py:734 #, python-format msgid "Security group %(security_group_id)s not found for project %(project_id)s." msgstr "" -#: nova/exception.py:743 +#: nova/exception.py:739 #, python-format msgid "Security group with rule %(rule_id)s not found." msgstr "" -#: nova/exception.py:747 +#: nova/exception.py:743 #, python-format msgid "" "Security group %(security_group_id)s is already associated with the " "instance %(instance_id)s" msgstr "" -#: nova/exception.py:752 +#: nova/exception.py:748 #, python-format msgid "" "Security group %(security_group_id)s is not associated with the instance " "%(instance_id)s" msgstr "" -#: nova/exception.py:757 +#: nova/exception.py:753 #, python-format msgid "Security group default rule (%rule_id)s not found." msgstr "" -#: nova/exception.py:761 +#: nova/exception.py:757 msgid "" "Network requires port_security_enabled and subnet associated in order to " "apply security groups." msgstr "" -#: nova/exception.py:766 +#: nova/exception.py:762 msgid "No Unique Match Found." msgstr "" -#: nova/exception.py:771 +#: nova/exception.py:767 #, python-format msgid "Migration %(migration_id)s could not be found." msgstr "" -#: nova/exception.py:775 +#: nova/exception.py:771 #, python-format msgid "Migration not found for instance %(instance_id)s with status %(status)s." msgstr "" -#: nova/exception.py:780 +#: nova/exception.py:776 #, python-format msgid "Console pool %(pool_id)s could not be found." msgstr "" -#: nova/exception.py:784 +#: nova/exception.py:780 #, python-format msgid "" "Console pool of type %(console_type)s for compute host %(compute_host)s " "on proxy host %(host)s not found." msgstr "" -#: nova/exception.py:790 +#: nova/exception.py:786 #, python-format msgid "Console %(console_id)s could not be found." msgstr "" -#: nova/exception.py:794 +#: nova/exception.py:790 #, python-format msgid "Console for instance %(instance_uuid)s could not be found." msgstr "" -#: nova/exception.py:798 +#: nova/exception.py:794 #, python-format msgid "" "Console for instance %(instance_uuid)s in pool %(pool_id)s could not be " "found." msgstr "" -#: nova/exception.py:803 +#: nova/exception.py:799 #, python-format msgid "Invalid console type %(console_type)s" msgstr "" -#: nova/exception.py:807 +#: nova/exception.py:803 #, python-format msgid "Instance type %(instance_type_id)s could not be found." msgstr "" -#: nova/exception.py:811 +#: nova/exception.py:807 #, python-format msgid "Instance type with name %(instance_type_name)s could not be found." msgstr "" -#: nova/exception.py:816 +#: nova/exception.py:812 #, python-format msgid "Flavor %(flavor_id)s could not be found." msgstr "" -#: nova/exception.py:820 +#: nova/exception.py:816 #, python-format msgid "Flavor access not found for %(flavor_id)s / %(project_id)s combination." msgstr "" -#: nova/exception.py:825 +#: nova/exception.py:821 #, python-format msgid "Cell %(cell_name)s doesn't exist." msgstr "" +#: nova/exception.py:825 +#, python-format +msgid "Cell with name %(name)s already exists." +msgstr "" + #: nova/exception.py:829 #, python-format msgid "Inconsistency in cell routing: %(reason)s" @@ -1467,95 +1467,90 @@ msgstr "" msgid "Invalid backend: %s" msgstr "" -#: nova/utils.py:436 -#, python-format -msgid "Unknown byte multiplier: %s" -msgstr "" - -#: nova/utils.py:553 +#: nova/utils.py:525 #, python-format msgid "Expected object of type: %s" msgstr "" -#: nova/utils.py:582 +#: nova/utils.py:554 #, python-format msgid "Invalid server_string: %s" msgstr "" -#: nova/utils.py:724 +#: nova/utils.py:696 #, python-format msgid "timefunc: '%(name)s' took %(total_time).2f secs" msgstr "" -#: nova/utils.py:778 nova/openstack/common/fileutils.py:64 +#: nova/utils.py:750 nova/openstack/common/fileutils.py:64 #, python-format msgid "Reloading cached file %s" msgstr "" -#: nova/utils.py:900 nova/virt/configdrive.py:177 +#: nova/utils.py:872 nova/virt/configdrive.py:177 #, python-format msgid "Could not remove tmpdir: %s" msgstr "" -#: nova/utils.py:1060 +#: nova/utils.py:1032 #, python-format msgid "%s is not a string or unicode" msgstr "" -#: nova/utils.py:1064 +#: nova/utils.py:1036 #, python-format msgid "%(name)s has less than %(min_length)s characters." msgstr "" -#: nova/utils.py:1069 +#: nova/utils.py:1041 #, python-format msgid "%(name)s has more than %(max_length)s characters." msgstr "" -#: nova/wsgi.py:122 +#: nova/wsgi.py:125 #, python-format msgid "%(name)s listening on %(host)s:%(port)s" msgstr "" -#: nova/wsgi.py:137 +#: nova/wsgi.py:140 #, fuzzy, python-format msgid "Unable to find cert_file : %s" msgstr "找ä¸åˆ°Volume %s" -#: nova/wsgi.py:141 +#: nova/wsgi.py:144 #, fuzzy, python-format msgid "Unable to find ca_file : %s" msgstr "找ä¸åˆ°Volume %s" -#: nova/wsgi.py:145 +#: nova/wsgi.py:148 #, fuzzy, python-format msgid "Unable to find key_file : %s" msgstr "找ä¸åˆ°Volume %s" -#: nova/wsgi.py:149 +#: nova/wsgi.py:152 msgid "" "When running server in SSL mode, you must specify both a cert_file and " "key_file option value in your configuration file" msgstr "" -#: nova/wsgi.py:180 +#: nova/wsgi.py:183 #, python-format msgid "Failed to start %(name)s on %(host)s:%(port)s with SSL support" msgstr "" -#: nova/wsgi.py:207 +#: nova/wsgi.py:210 msgid "Stopping WSGI server." msgstr "" -#: nova/wsgi.py:225 +#: nova/wsgi.py:228 msgid "WSGI server has stopped." msgstr "" -#: nova/wsgi.py:294 +#: nova/wsgi.py:297 msgid "You must implement __call__" msgstr "" -#: nova/wsgi.py:480 +#: nova/wsgi.py:483 #, python-format msgid "Loading app %(name)s from %(path)s" msgstr "" @@ -1569,7 +1564,7 @@ msgid "Sourcing roles from deprecated X-Role HTTP header" msgstr "" #: nova/api/sizelimit.py:53 nova/api/sizelimit.py:62 nova/api/sizelimit.py:76 -#: nova/api/metadata/password.py:62 +#: nova/api/metadata/password.py:61 msgid "Request is too large." msgstr "" @@ -1774,202 +1769,202 @@ msgstr "" msgid "Get console output for instance %s" msgstr "" -#: nova/api/ec2/cloud.py:843 +#: nova/api/ec2/cloud.py:841 #, python-format msgid "Create volume from snapshot %s" msgstr "" -#: nova/api/ec2/cloud.py:847 nova/api/openstack/compute/contrib/volumes.py:242 +#: nova/api/ec2/cloud.py:845 nova/api/openstack/compute/contrib/volumes.py:242 #, python-format msgid "Create volume of %s GB" msgstr "" -#: nova/api/ec2/cloud.py:874 +#: nova/api/ec2/cloud.py:872 msgid "Delete Failed" msgstr "" -#: nova/api/ec2/cloud.py:887 +#: nova/api/ec2/cloud.py:885 #, python-format msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s" msgstr "" -#: nova/api/ec2/cloud.py:898 +#: nova/api/ec2/cloud.py:896 msgid "Attach Failed." msgstr "" -#: nova/api/ec2/cloud.py:920 nova/api/openstack/compute/contrib/volumes.py:445 +#: nova/api/ec2/cloud.py:918 nova/api/openstack/compute/contrib/volumes.py:445 #, python-format msgid "Detach volume %s" msgstr "" -#: nova/api/ec2/cloud.py:927 +#: nova/api/ec2/cloud.py:925 msgid "Detach Volume Failed." msgstr "" -#: nova/api/ec2/cloud.py:953 nova/api/ec2/cloud.py:1010 -#: nova/api/ec2/cloud.py:1576 nova/api/ec2/cloud.py:1591 +#: nova/api/ec2/cloud.py:951 nova/api/ec2/cloud.py:1008 +#: nova/api/ec2/cloud.py:1574 nova/api/ec2/cloud.py:1589 #, python-format msgid "attribute not supported: %s" msgstr "" -#: nova/api/ec2/cloud.py:1085 +#: nova/api/ec2/cloud.py:1083 #, python-format msgid "vol = %s\n" msgstr "" -#: nova/api/ec2/cloud.py:1245 +#: nova/api/ec2/cloud.py:1243 msgid "Allocate address" msgstr "" -#: nova/api/ec2/cloud.py:1249 +#: nova/api/ec2/cloud.py:1247 msgid "No more floating IPs available" msgstr "" -#: nova/api/ec2/cloud.py:1253 +#: nova/api/ec2/cloud.py:1251 #, python-format msgid "Release address %s" msgstr "" -#: nova/api/ec2/cloud.py:1258 +#: nova/api/ec2/cloud.py:1256 msgid "Unable to release IP Address." msgstr "" -#: nova/api/ec2/cloud.py:1261 +#: nova/api/ec2/cloud.py:1259 #, python-format msgid "Associate address %(public_ip)s to instance %(instance_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1271 +#: nova/api/ec2/cloud.py:1269 msgid "Unable to associate IP Address, no fixed_ips." msgstr "" -#: nova/api/ec2/cloud.py:1279 +#: nova/api/ec2/cloud.py:1277 #: nova/api/openstack/compute/contrib/floating_ips.py:248 #, python-format msgid "multiple fixed_ips exist, using the first: %s" msgstr "" -#: nova/api/ec2/cloud.py:1288 +#: nova/api/ec2/cloud.py:1286 msgid "Floating ip is already associated." msgstr "" -#: nova/api/ec2/cloud.py:1291 +#: nova/api/ec2/cloud.py:1289 msgid "l3driver call to add floating ip failed." msgstr "" -#: nova/api/ec2/cloud.py:1294 +#: nova/api/ec2/cloud.py:1292 msgid "Error, unable to associate floating ip." msgstr "" -#: nova/api/ec2/cloud.py:1302 +#: nova/api/ec2/cloud.py:1300 #, python-format msgid "Disassociate address %s" msgstr "" -#: nova/api/ec2/cloud.py:1307 +#: nova/api/ec2/cloud.py:1305 msgid "Floating ip is not associated." msgstr "" -#: nova/api/ec2/cloud.py:1310 +#: nova/api/ec2/cloud.py:1308 #: nova/api/openstack/compute/contrib/floating_ips.py:97 msgid "Cannot disassociate auto assigned floating ip" msgstr "" -#: nova/api/ec2/cloud.py:1337 +#: nova/api/ec2/cloud.py:1335 msgid "Image must be available" msgstr "" -#: nova/api/ec2/cloud.py:1375 +#: nova/api/ec2/cloud.py:1373 msgid "Going to start terminating instances" msgstr "" -#: nova/api/ec2/cloud.py:1385 +#: nova/api/ec2/cloud.py:1383 #, python-format msgid "Reboot instance %r" msgstr "" -#: nova/api/ec2/cloud.py:1395 +#: nova/api/ec2/cloud.py:1393 msgid "Going to stop instances" msgstr "" -#: nova/api/ec2/cloud.py:1405 +#: nova/api/ec2/cloud.py:1403 msgid "Going to start instances" msgstr "" -#: nova/api/ec2/cloud.py:1496 +#: nova/api/ec2/cloud.py:1494 #, python-format msgid "De-registering image %s" msgstr "" -#: nova/api/ec2/cloud.py:1512 +#: nova/api/ec2/cloud.py:1510 msgid "imageLocation is required" msgstr "" -#: nova/api/ec2/cloud.py:1531 +#: nova/api/ec2/cloud.py:1529 #, python-format msgid "Registered image %(image_location)s with id %(image_id)s" msgstr "" -#: nova/api/ec2/cloud.py:1594 +#: nova/api/ec2/cloud.py:1592 msgid "user or group not specified" msgstr "" -#: nova/api/ec2/cloud.py:1596 +#: nova/api/ec2/cloud.py:1594 msgid "only group \"all\" is supported" msgstr "" -#: nova/api/ec2/cloud.py:1598 +#: nova/api/ec2/cloud.py:1596 msgid "operation_type must be add or remove" msgstr "" -#: nova/api/ec2/cloud.py:1600 +#: nova/api/ec2/cloud.py:1598 #, python-format msgid "Updating image %s publicity" msgstr "" -#: nova/api/ec2/cloud.py:1613 +#: nova/api/ec2/cloud.py:1611 #, python-format msgid "Not allowed to modify attributes for image %s" msgstr "" -#: nova/api/ec2/cloud.py:1641 +#: nova/api/ec2/cloud.py:1639 #, python-format msgid "" "Invalid value '%(ec2_instance_id)s' for instanceId. Instance does not " "have a volume attached at root (%(root)s)" msgstr "" -#: nova/api/ec2/cloud.py:1673 +#: nova/api/ec2/cloud.py:1671 #, python-format msgid "Couldn't stop instance with in %d sec" msgstr "" -#: nova/api/ec2/cloud.py:1691 +#: nova/api/ec2/cloud.py:1689 #, python-format msgid "image of %(instance)s at %(now)s" msgstr "" -#: nova/api/ec2/cloud.py:1716 nova/api/ec2/cloud.py:1761 +#: nova/api/ec2/cloud.py:1714 nova/api/ec2/cloud.py:1759 msgid "resource_id and tag are required" msgstr "" -#: nova/api/ec2/cloud.py:1719 nova/api/ec2/cloud.py:1764 +#: nova/api/ec2/cloud.py:1717 nova/api/ec2/cloud.py:1762 msgid "Expecting a list of resources" msgstr "" -#: nova/api/ec2/cloud.py:1723 nova/api/ec2/cloud.py:1768 +#: nova/api/ec2/cloud.py:1721 nova/api/ec2/cloud.py:1766 msgid "Only instances implemented" msgstr "" -#: nova/api/ec2/cloud.py:1726 nova/api/ec2/cloud.py:1771 +#: nova/api/ec2/cloud.py:1724 nova/api/ec2/cloud.py:1769 msgid "Expecting a list of tagSets" msgstr "" -#: nova/api/ec2/cloud.py:1783 +#: nova/api/ec2/cloud.py:1781 msgid "Expecting key to be set" msgstr "" -#: nova/api/ec2/cloud.py:1856 +#: nova/api/ec2/cloud.py:1854 msgid "Invalid CIDR" msgstr "" @@ -2416,14 +2411,14 @@ msgstr "" #: nova/api/openstack/compute/servers.py:576 #: nova/api/openstack/compute/servers.py:745 -#: nova/api/openstack/compute/servers.py:1011 -#: nova/api/openstack/compute/servers.py:1119 -#: nova/api/openstack/compute/servers.py:1292 +#: nova/api/openstack/compute/servers.py:1008 +#: nova/api/openstack/compute/servers.py:1116 +#: nova/api/openstack/compute/servers.py:1289 #: nova/api/openstack/compute/plugins/v3/servers.py:618 #: nova/api/openstack/compute/plugins/v3/servers.py:785 -#: nova/api/openstack/compute/plugins/v3/servers.py:1093 -#: nova/api/openstack/compute/plugins/v3/servers.py:1201 -#: nova/api/openstack/compute/plugins/v3/servers.py:1380 +#: nova/api/openstack/compute/plugins/v3/servers.py:1090 +#: nova/api/openstack/compute/plugins/v3/servers.py:1198 +#: nova/api/openstack/compute/plugins/v3/servers.py:1377 msgid "Instance could not be found" msgstr "" @@ -2552,137 +2547,137 @@ msgstr "" msgid "Invalid key_name provided." msgstr "" -#: nova/api/openstack/compute/servers.py:999 -#: nova/api/openstack/compute/plugins/v3/servers.py:1081 +#: nova/api/openstack/compute/servers.py:996 +#: nova/api/openstack/compute/plugins/v3/servers.py:1078 msgid "HostId cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1003 -#: nova/api/openstack/compute/plugins/v3/servers.py:1085 +#: nova/api/openstack/compute/servers.py:1000 +#: nova/api/openstack/compute/plugins/v3/servers.py:1082 msgid "Personality cannot be updated." msgstr "" -#: nova/api/openstack/compute/servers.py:1029 -#: nova/api/openstack/compute/servers.py:1046 -#: nova/api/openstack/compute/plugins/v3/servers.py:1111 -#: nova/api/openstack/compute/plugins/v3/servers.py:1128 +#: nova/api/openstack/compute/servers.py:1026 +#: nova/api/openstack/compute/servers.py:1043 +#: nova/api/openstack/compute/plugins/v3/servers.py:1108 +#: nova/api/openstack/compute/plugins/v3/servers.py:1125 msgid "Instance has not been resized." msgstr "" -#: nova/api/openstack/compute/servers.py:1049 -#: nova/api/openstack/compute/plugins/v3/servers.py:1131 +#: nova/api/openstack/compute/servers.py:1046 +#: nova/api/openstack/compute/plugins/v3/servers.py:1128 msgid "Flavor used by the instance could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1065 -#: nova/api/openstack/compute/plugins/v3/servers.py:1147 +#: nova/api/openstack/compute/servers.py:1062 +#: nova/api/openstack/compute/plugins/v3/servers.py:1144 msgid "Argument 'type' for reboot is not HARD or SOFT" msgstr "" -#: nova/api/openstack/compute/servers.py:1069 -#: nova/api/openstack/compute/plugins/v3/servers.py:1151 +#: nova/api/openstack/compute/servers.py:1066 +#: nova/api/openstack/compute/plugins/v3/servers.py:1148 msgid "Missing argument 'type' for reboot" msgstr "" -#: nova/api/openstack/compute/servers.py:1091 -#: nova/api/openstack/compute/plugins/v3/servers.py:1173 +#: nova/api/openstack/compute/servers.py:1088 +#: nova/api/openstack/compute/plugins/v3/servers.py:1170 msgid "Unable to locate requested flavor." msgstr "" -#: nova/api/openstack/compute/servers.py:1094 -#: nova/api/openstack/compute/plugins/v3/servers.py:1176 +#: nova/api/openstack/compute/servers.py:1091 +#: nova/api/openstack/compute/plugins/v3/servers.py:1173 msgid "Resize requires a flavor change." msgstr "" -#: nova/api/openstack/compute/servers.py:1100 -#: nova/api/openstack/compute/plugins/v3/servers.py:1182 +#: nova/api/openstack/compute/servers.py:1097 +#: nova/api/openstack/compute/plugins/v3/servers.py:1179 msgid "You are not authorized to access the image the instance was started with." msgstr "" -#: nova/api/openstack/compute/servers.py:1104 -#: nova/api/openstack/compute/plugins/v3/servers.py:1186 +#: nova/api/openstack/compute/servers.py:1101 +#: nova/api/openstack/compute/plugins/v3/servers.py:1183 msgid "Image that the instance was started with could not be found." msgstr "" -#: nova/api/openstack/compute/servers.py:1108 -#: nova/api/openstack/compute/plugins/v3/servers.py:1190 +#: nova/api/openstack/compute/servers.py:1105 +#: nova/api/openstack/compute/plugins/v3/servers.py:1187 #, fuzzy msgid "Invalid instance image." msgstr "無效的快照(snapshot)" -#: nova/api/openstack/compute/servers.py:1129 -#: nova/api/openstack/compute/plugins/v3/servers.py:1211 +#: nova/api/openstack/compute/servers.py:1126 +#: nova/api/openstack/compute/plugins/v3/servers.py:1208 msgid "Missing imageRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1138 -#: nova/api/openstack/compute/plugins/v3/servers.py:1220 +#: nova/api/openstack/compute/servers.py:1135 +#: nova/api/openstack/compute/plugins/v3/servers.py:1217 msgid "Invalid imageRef provided." msgstr "" -#: nova/api/openstack/compute/servers.py:1165 -#: nova/api/openstack/compute/plugins/v3/servers.py:1253 +#: nova/api/openstack/compute/servers.py:1162 +#: nova/api/openstack/compute/plugins/v3/servers.py:1250 msgid "Missing flavorRef attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1178 -#: nova/api/openstack/compute/plugins/v3/servers.py:1266 +#: nova/api/openstack/compute/servers.py:1175 +#: nova/api/openstack/compute/plugins/v3/servers.py:1263 msgid "No adminPass was specified" msgstr "" -#: nova/api/openstack/compute/servers.py:1182 -#: nova/api/openstack/compute/servers.py:1391 -#: nova/api/openstack/compute/plugins/v3/servers.py:1270 -#: nova/api/openstack/compute/plugins/v3/servers.py:1479 +#: nova/api/openstack/compute/servers.py:1179 +#: nova/api/openstack/compute/servers.py:1388 +#: nova/api/openstack/compute/plugins/v3/servers.py:1267 +#: nova/api/openstack/compute/plugins/v3/servers.py:1476 msgid "Invalid adminPass" msgstr "" -#: nova/api/openstack/compute/servers.py:1188 -#: nova/api/openstack/compute/plugins/v3/servers.py:1276 +#: nova/api/openstack/compute/servers.py:1185 +#: nova/api/openstack/compute/plugins/v3/servers.py:1273 msgid "Unable to set password on instance" msgstr "" -#: nova/api/openstack/compute/servers.py:1197 -#: nova/api/openstack/compute/plugins/v3/servers.py:1285 +#: nova/api/openstack/compute/servers.py:1194 +#: nova/api/openstack/compute/plugins/v3/servers.py:1282 msgid "Unable to parse metadata key/value pairs." msgstr "" -#: nova/api/openstack/compute/servers.py:1210 -#: nova/api/openstack/compute/plugins/v3/servers.py:1298 +#: nova/api/openstack/compute/servers.py:1207 +#: nova/api/openstack/compute/plugins/v3/servers.py:1295 msgid "Resize request has invalid 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1213 -#: nova/api/openstack/compute/plugins/v3/servers.py:1301 +#: nova/api/openstack/compute/servers.py:1210 +#: nova/api/openstack/compute/plugins/v3/servers.py:1298 msgid "Resize requests require 'flavorRef' attribute." msgstr "" -#: nova/api/openstack/compute/servers.py:1231 +#: nova/api/openstack/compute/servers.py:1228 #: nova/api/openstack/compute/contrib/aggregates.py:143 #: nova/api/openstack/compute/contrib/coverage_ext.py:284 #: nova/api/openstack/compute/contrib/keypairs.py:78 #: nova/api/openstack/compute/plugins/v3/keypairs.py:79 -#: nova/api/openstack/compute/plugins/v3/servers.py:1319 +#: nova/api/openstack/compute/plugins/v3/servers.py:1316 msgid "Invalid request body" msgstr "" -#: nova/api/openstack/compute/servers.py:1237 -#: nova/api/openstack/compute/plugins/v3/servers.py:1325 +#: nova/api/openstack/compute/servers.py:1234 +#: nova/api/openstack/compute/plugins/v3/servers.py:1322 msgid "Could not parse imageRef from request." msgstr "" -#: nova/api/openstack/compute/servers.py:1298 -#: nova/api/openstack/compute/plugins/v3/servers.py:1386 +#: nova/api/openstack/compute/servers.py:1295 +#: nova/api/openstack/compute/plugins/v3/servers.py:1383 msgid "Cannot find image for rebuild" msgstr "" -#: nova/api/openstack/compute/servers.py:1332 -#: nova/api/openstack/compute/plugins/v3/servers.py:1420 +#: nova/api/openstack/compute/servers.py:1329 +#: nova/api/openstack/compute/plugins/v3/servers.py:1417 msgid "createImage entity requires name attribute" msgstr "" -#: nova/api/openstack/compute/servers.py:1417 -#: nova/api/openstack/compute/plugins/v3/servers.py:1501 +#: nova/api/openstack/compute/servers.py:1414 +#: nova/api/openstack/compute/plugins/v3/servers.py:1498 #, python-format msgid "Removing options '%s' from query" msgstr "" @@ -2980,7 +2975,7 @@ msgstr "" msgid "Fixed IP %s has been deleted" msgstr "" -#: nova/api/openstack/compute/contrib/fixed_ips.py:74 +#: nova/api/openstack/compute/contrib/fixed_ips.py:73 #: nova/api/openstack/compute/plugins/v3/fixed_ips.py:77 #, python-format msgid "Fixed IP %s not found" @@ -3077,7 +3072,7 @@ msgid "Floating ip %(address)s is not associated with instance %(id)s." msgstr "" #: nova/api/openstack/compute/contrib/floating_ips_bulk.py:146 -#: nova/cmd/manage.py:386 +#: nova/cmd/manage.py:385 #, python-format msgid "/%s should be specified as single address(es) not in cidr format" msgstr "" @@ -3353,7 +3348,7 @@ msgstr "" msgid "Missing disabled reason field" msgstr "" -#: nova/api/openstack/compute/contrib/services.py:189 +#: nova/api/openstack/compute/contrib/services.py:188 msgid "Unknown service" msgstr "" @@ -3436,12 +3431,12 @@ msgstr "" msgid "Did not find any server create extensions" msgstr "" -#: nova/api/openstack/compute/plugins/v3/servers.py:1034 +#: nova/api/openstack/compute/plugins/v3/servers.py:1031 #, python-format msgid "Running _create_extension_point for %s" msgstr "" -#: nova/api/openstack/compute/views/servers.py:186 +#: nova/api/openstack/compute/views/servers.py:176 msgid "Instance has had its instance_type removed from the DB" msgstr "" @@ -3573,16 +3568,16 @@ msgstr "" msgid "Error scheduling instances %(instance_uuids)s" msgstr "" -#: nova/cells/state.py:271 +#: nova/cells/state.py:272 msgid "Updating cell cache from db." msgstr "" -#: nova/cells/state.py:316 +#: nova/cells/state.py:317 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capabilities" msgstr "" -#: nova/cells/state.py:332 +#: nova/cells/state.py:333 #, python-format msgid "Unknown cell '%(cell_name)s' when trying to update capacities" msgstr "" @@ -3594,7 +3589,7 @@ msgid "" "hint" msgstr "" -#: nova/cells/weights/mute_child.py:69 +#: nova/cells/weights/mute_child.py:65 #, python-format msgid "" "%(cell)s has not been seen since %(last_seen)s and is being treated as " @@ -3642,20 +3637,20 @@ msgstr "" msgid "deployment to node %s done" msgstr "" -#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1258 +#: nova/cmd/baremetal_manage.py:158 nova/cmd/manage.py:1255 #, python-format msgid "Could not read %s. Re-running with sudo" msgstr "" -#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1262 +#: nova/cmd/baremetal_manage.py:162 nova/cmd/manage.py:1259 msgid "sudo failed, continuing as if nothing happened" msgstr "" -#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1264 +#: nova/cmd/baremetal_manage.py:164 nova/cmd/manage.py:1261 msgid "Please re-run nova-manage as root." msgstr "" -#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1309 +#: nova/cmd/baremetal_manage.py:204 nova/cmd/manage.py:1306 msgid "Command failed, please check log for more info" msgstr "" @@ -3676,312 +3671,312 @@ msgstr "" msgid "Environment variable 'NETWORK_ID' must be set." msgstr "" -#: nova/cmd/manage.py:207 +#: nova/cmd/manage.py:206 msgid "" "The above error may show that the database has not been created.\n" "Please create a database using 'nova-manage db sync' before running this " "command." msgstr "" -#: nova/cmd/manage.py:242 +#: nova/cmd/manage.py:241 #, python-format msgid "%(key)s is not a valid quota key. Valid options are: %(options)s." msgstr "" -#: nova/cmd/manage.py:248 +#: nova/cmd/manage.py:247 msgid "Quota" msgstr "" -#: nova/cmd/manage.py:249 +#: nova/cmd/manage.py:248 msgid "Limit" msgstr "" -#: nova/cmd/manage.py:250 +#: nova/cmd/manage.py:249 msgid "In Use" msgstr "" -#: nova/cmd/manage.py:251 +#: nova/cmd/manage.py:250 msgid "Reserved" msgstr "" -#: nova/cmd/manage.py:291 nova/cmd/manage.py:366 nova/cmd/manage.py:692 -#: nova/cmd/manage.py:705 +#: nova/cmd/manage.py:290 nova/cmd/manage.py:365 nova/cmd/manage.py:690 +#: nova/cmd/manage.py:703 #, python-format msgid "error: %s" msgstr "" -#: nova/cmd/manage.py:299 +#: nova/cmd/manage.py:298 msgid "network" msgstr "" -#: nova/cmd/manage.py:300 +#: nova/cmd/manage.py:299 msgid "IP address" msgstr "" -#: nova/cmd/manage.py:301 +#: nova/cmd/manage.py:300 msgid "hostname" msgstr "" -#: nova/cmd/manage.py:302 nova/cmd/manage.py:826 +#: nova/cmd/manage.py:301 nova/cmd/manage.py:824 msgid "host" msgstr "" -#: nova/cmd/manage.py:314 nova/cmd/manage.py:338 +#: nova/cmd/manage.py:313 nova/cmd/manage.py:337 msgid "No fixed IP found." msgstr "" -#: nova/cmd/manage.py:330 +#: nova/cmd/manage.py:329 #, python-format msgid "WARNING: fixed ip %s allocated to missing instance" msgstr "" -#: nova/cmd/manage.py:393 +#: nova/cmd/manage.py:392 #, python-format msgid "" "Too many IP addresses will be generated. Please increase /%s to reduce " "the number generated." msgstr "" -#: nova/cmd/manage.py:444 +#: nova/cmd/manage.py:443 msgid "No floating IP addresses have been defined." msgstr "" -#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:212 +#: nova/cmd/manage.py:505 nova/tests/test_nova_manage.py:212 msgid "id" msgstr "" -#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:213 +#: nova/cmd/manage.py:506 nova/tests/test_nova_manage.py:213 msgid "IPv4" msgstr "" -#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:214 +#: nova/cmd/manage.py:507 nova/tests/test_nova_manage.py:214 msgid "IPv6" msgstr "" -#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:215 +#: nova/cmd/manage.py:508 nova/tests/test_nova_manage.py:215 msgid "start address" msgstr "" -#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:216 +#: nova/cmd/manage.py:509 nova/tests/test_nova_manage.py:216 msgid "DNS1" msgstr "" -#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:217 +#: nova/cmd/manage.py:510 nova/tests/test_nova_manage.py:217 msgid "DNS2" msgstr "" -#: nova/cmd/manage.py:512 nova/tests/test_nova_manage.py:218 +#: nova/cmd/manage.py:511 nova/tests/test_nova_manage.py:218 msgid "VlanID" msgstr "" -#: nova/cmd/manage.py:513 nova/cmd/manage.py:619 +#: nova/cmd/manage.py:512 nova/cmd/manage.py:618 #: nova/tests/test_nova_manage.py:219 msgid "project" msgstr "" -#: nova/cmd/manage.py:514 nova/tests/test_nova_manage.py:220 +#: nova/cmd/manage.py:513 nova/tests/test_nova_manage.py:220 msgid "uuid" msgstr "" -#: nova/cmd/manage.py:521 +#: nova/cmd/manage.py:520 msgid "No networks found" msgstr "" -#: nova/cmd/manage.py:540 +#: nova/cmd/manage.py:539 msgid "Please specify either fixed_range or uuid" msgstr "" -#: nova/cmd/manage.py:545 +#: nova/cmd/manage.py:544 msgid "UUID is required to delete Quantum Networks" msgstr "" -#: nova/cmd/manage.py:548 +#: nova/cmd/manage.py:547 msgid "Deleting by fixed_range is not supported with the QuantumManager" msgstr "" -#: nova/cmd/manage.py:611 +#: nova/cmd/manage.py:610 msgid "instance" msgstr "" -#: nova/cmd/manage.py:612 +#: nova/cmd/manage.py:611 msgid "node" msgstr "" -#: nova/cmd/manage.py:613 +#: nova/cmd/manage.py:612 msgid "type" msgstr "" -#: nova/cmd/manage.py:614 +#: nova/cmd/manage.py:613 msgid "state" msgstr "" -#: nova/cmd/manage.py:615 +#: nova/cmd/manage.py:614 msgid "launched" msgstr "" -#: nova/cmd/manage.py:616 +#: nova/cmd/manage.py:615 msgid "image" msgstr "" -#: nova/cmd/manage.py:617 +#: nova/cmd/manage.py:616 msgid "kernel" msgstr "" -#: nova/cmd/manage.py:618 +#: nova/cmd/manage.py:617 msgid "ramdisk" msgstr "" -#: nova/cmd/manage.py:620 +#: nova/cmd/manage.py:619 msgid "user" msgstr "" -#: nova/cmd/manage.py:621 nova/cmd/manage.py:827 +#: nova/cmd/manage.py:620 nova/cmd/manage.py:825 msgid "zone" msgstr "" -#: nova/cmd/manage.py:622 +#: nova/cmd/manage.py:621 msgid "index" msgstr "" -#: nova/cmd/manage.py:667 +#: nova/cmd/manage.py:665 msgid "Binary" msgstr "" -#: nova/cmd/manage.py:668 +#: nova/cmd/manage.py:666 msgid "Host" msgstr "" -#: nova/cmd/manage.py:669 +#: nova/cmd/manage.py:667 msgid "Zone" msgstr "" -#: nova/cmd/manage.py:670 +#: nova/cmd/manage.py:668 msgid "Status" msgstr "" -#: nova/cmd/manage.py:671 +#: nova/cmd/manage.py:669 msgid "State" msgstr "" -#: nova/cmd/manage.py:672 +#: nova/cmd/manage.py:670 msgid "Updated_At" msgstr "" -#: nova/cmd/manage.py:694 +#: nova/cmd/manage.py:692 #, python-format msgid "Service %(service)s on host %(host)s enabled." msgstr "" -#: nova/cmd/manage.py:707 +#: nova/cmd/manage.py:705 #, python-format msgid "Service %(service)s on host %(host)s disabled." msgstr "" -#: nova/cmd/manage.py:774 +#: nova/cmd/manage.py:772 msgid "An unexpected error has occurred." msgstr "" -#: nova/cmd/manage.py:775 +#: nova/cmd/manage.py:773 msgid "[Result]" msgstr "" -#: nova/cmd/manage.py:779 +#: nova/cmd/manage.py:777 msgid "HOST" msgstr "" -#: nova/cmd/manage.py:780 +#: nova/cmd/manage.py:778 msgid "PROJECT" msgstr "" -#: nova/cmd/manage.py:781 +#: nova/cmd/manage.py:779 msgid "cpu" msgstr "" -#: nova/cmd/manage.py:782 +#: nova/cmd/manage.py:780 msgid "mem(mb)" msgstr "" -#: nova/cmd/manage.py:783 +#: nova/cmd/manage.py:781 msgid "hdd" msgstr "" -#: nova/cmd/manage.py:866 +#: nova/cmd/manage.py:864 msgid "Must supply a positive value for max_rows" msgstr "" -#: nova/cmd/manage.py:905 +#: nova/cmd/manage.py:903 msgid "Must supply valid parameters to create instance_type" msgstr "" -#: nova/cmd/manage.py:909 +#: nova/cmd/manage.py:907 msgid "Instance Type exists." msgstr "" -#: nova/cmd/manage.py:910 +#: nova/cmd/manage.py:908 msgid "Please ensure instance_type name and flavorid are unique." msgstr "" -#: nova/cmd/manage.py:912 +#: nova/cmd/manage.py:910 msgid "Currently defined instance_type names and flavorids:" msgstr "" -#: nova/cmd/manage.py:917 +#: nova/cmd/manage.py:915 msgid "Unknown error" msgstr "" -#: nova/cmd/manage.py:920 +#: nova/cmd/manage.py:918 #, python-format msgid "%s created" msgstr "" -#: nova/cmd/manage.py:928 +#: nova/cmd/manage.py:926 msgid "Valid instance type name is required" msgstr "" -#: nova/cmd/manage.py:931 +#: nova/cmd/manage.py:929 #, python-format msgid "DB Error: %s" msgstr "" -#: nova/cmd/manage.py:936 +#: nova/cmd/manage.py:934 #, python-format msgid "%s deleted" msgstr "" -#: nova/cmd/manage.py:972 +#: nova/cmd/manage.py:970 #, python-format msgid "Key %(key)s set to %(value)s on instance type %(name)s" msgstr "" -#: nova/cmd/manage.py:994 +#: nova/cmd/manage.py:992 #, python-format msgid "Key %(key)s on instance type %(name)s unset" msgstr "" -#: nova/cmd/manage.py:1040 +#: nova/cmd/manage.py:1037 #, python-format msgid "Hypervisor: %s" msgstr "" -#: nova/cmd/manage.py:1081 +#: nova/cmd/manage.py:1078 #, python-format msgid "Line %(linenum)d : %(line)s" msgstr "" -#: nova/cmd/manage.py:1083 +#: nova/cmd/manage.py:1080 msgid "No errors in logfiles!" msgstr "" -#: nova/cmd/manage.py:1095 +#: nova/cmd/manage.py:1092 msgid "Unable to find system log file!" msgstr "" -#: nova/cmd/manage.py:1099 +#: nova/cmd/manage.py:1096 #, python-format msgid "Last %s nova syslog entries:-" msgstr "" -#: nova/cmd/manage.py:1108 +#: nova/cmd/manage.py:1105 msgid "No nova entries in syslog!" msgstr "" @@ -4432,7 +4427,7 @@ msgstr "" msgid "Instance disappeared before we could start it" msgstr "" -#: nova/compute/manager.py:951 nova/compute/manager.py:2465 +#: nova/compute/manager.py:951 nova/compute/manager.py:2466 #, python-format msgid "No node specified, defaulting to %s" msgstr "" @@ -4454,7 +4449,7 @@ msgstr "" msgid "Clean up resource before rescheduling." msgstr "" -#: nova/compute/manager.py:1077 nova/compute/manager.py:2518 +#: nova/compute/manager.py:1077 nova/compute/manager.py:2519 msgid "Error trying to reschedule" msgstr "" @@ -4533,8 +4528,8 @@ msgstr "" msgid "Ignoring volume cleanup failure due to %s" msgstr "" -#: nova/compute/manager.py:1502 nova/compute/manager.py:2700 -#: nova/compute/manager.py:4223 +#: nova/compute/manager.py:1502 nova/compute/manager.py:2701 +#: nova/compute/manager.py:4224 #, python-format msgid "%s. Setting instance vm_state to ERROR" msgstr "" @@ -4679,305 +4674,305 @@ msgstr "" msgid "Changing instance metadata according to %r" msgstr "" -#: nova/compute/manager.py:2384 +#: nova/compute/manager.py:2385 #, python-format msgid "Updating instance to original state: '%s'" msgstr "" -#: nova/compute/manager.py:2418 +#: nova/compute/manager.py:2419 msgid "Instance has no source host" msgstr "" -#: nova/compute/manager.py:2424 +#: nova/compute/manager.py:2425 msgid "destination same as source!" msgstr "" -#: nova/compute/manager.py:2446 +#: nova/compute/manager.py:2447 msgid "Migrating" msgstr "" -#: nova/compute/manager.py:2697 +#: nova/compute/manager.py:2698 #, python-format msgid "Failed to rollback quota for failed finish_resize: %s" msgstr "" -#: nova/compute/manager.py:2760 +#: nova/compute/manager.py:2761 msgid "Pausing" msgstr "" -#: nova/compute/manager.py:2778 +#: nova/compute/manager.py:2779 msgid "Unpausing" msgstr "" -#: nova/compute/manager.py:2817 +#: nova/compute/manager.py:2818 msgid "Retrieving diagnostics" msgstr "" -#: nova/compute/manager.py:2848 +#: nova/compute/manager.py:2849 msgid "Resuming" msgstr "" -#: nova/compute/manager.py:2868 +#: nova/compute/manager.py:2869 msgid "Reset network" msgstr "" -#: nova/compute/manager.py:2873 +#: nova/compute/manager.py:2874 msgid "Inject network info" msgstr "" -#: nova/compute/manager.py:2876 +#: nova/compute/manager.py:2877 #, python-format msgid "network_info to inject: |%s|" msgstr "" -#: nova/compute/manager.py:2893 +#: nova/compute/manager.py:2894 msgid "Get console output" msgstr "" -#: nova/compute/manager.py:2920 +#: nova/compute/manager.py:2921 msgid "Getting vnc console" msgstr "" -#: nova/compute/manager.py:2955 +#: nova/compute/manager.py:2956 msgid "Getting spice console" msgstr "" -#: nova/compute/manager.py:3003 +#: nova/compute/manager.py:3004 #, python-format msgid "Booting with volume %(volume_id)s at %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3054 +#: nova/compute/manager.py:3055 #, python-format msgid "Attaching volume %(volume_id)s to %(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3064 +#: nova/compute/manager.py:3065 #, python-format msgid "" "Failed to connect to volume %(volume_id)s while attaching at " "%(mountpoint)s" msgstr "" -#: nova/compute/manager.py:3080 +#: nova/compute/manager.py:3081 #, fuzzy, python-format msgid "Failed to attach volume %(volume_id)s at %(mountpoint)s" msgstr "å¸è¼‰_Volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3111 +#: nova/compute/manager.py:3112 #, python-format msgid "Detach volume %(volume_id)s from mountpoint %(mp)s" msgstr "" -#: nova/compute/manager.py:3122 +#: nova/compute/manager.py:3123 #, fuzzy msgid "Detaching volume from unknown instance" msgstr "無法掛載Volume 到虛擬機器 %s" -#: nova/compute/manager.py:3129 +#: nova/compute/manager.py:3130 #, fuzzy, python-format msgid "Failed to detach volume %(volume_id)s from %(mp)s" msgstr "å¸è¼‰_Volume: %(instance_name)s, %(mountpoint)s" -#: nova/compute/manager.py:3153 +#: nova/compute/manager.py:3154 msgid "Updating volume usage cache with totals" msgstr "" -#: nova/compute/manager.py:3189 +#: nova/compute/manager.py:3190 #, python-format msgid "allocate_port_for_instance returned %(ports)s ports" msgstr "" -#: nova/compute/manager.py:3209 +#: nova/compute/manager.py:3210 #, python-format msgid "Port %s is not attached" msgstr "" -#: nova/compute/manager.py:3223 +#: nova/compute/manager.py:3224 #, python-format msgid "Host %s not found" msgstr "" -#: nova/compute/manager.py:3376 +#: nova/compute/manager.py:3377 #, python-format msgid "Pre live migration failed at %s" msgstr "" -#: nova/compute/manager.py:3404 +#: nova/compute/manager.py:3405 msgid "_post_live_migration() is started.." msgstr "" -#: nova/compute/manager.py:3459 +#: nova/compute/manager.py:3460 #, python-format msgid "Migrating instance to %s finished successfully." msgstr "" -#: nova/compute/manager.py:3461 +#: nova/compute/manager.py:3462 msgid "" "You may see the error \"libvirt: QEMU error: Domain not found: no domain " "with matching name.\" This error can be safely ignored." msgstr "" -#: nova/compute/manager.py:3476 +#: nova/compute/manager.py:3477 msgid "Post operation of migration started" msgstr "" -#: nova/compute/manager.py:3508 +#: nova/compute/manager.py:3509 #, python-format msgid "Failed to get compute_info for %s" msgstr "" -#: nova/compute/manager.py:3637 +#: nova/compute/manager.py:3638 msgid "Updated the info_cache for instance" msgstr "" -#: nova/compute/manager.py:3687 +#: nova/compute/manager.py:3688 #, python-format msgid "" "Found %(migration_count)d unconfirmed migrations older than " "%(confirm_window)d seconds" msgstr "" -#: nova/compute/manager.py:3692 +#: nova/compute/manager.py:3693 #, python-format msgid "Setting migration %(migration_id)s to error: %(reason)s" msgstr "" -#: nova/compute/manager.py:3701 +#: nova/compute/manager.py:3702 #, python-format msgid "" "Automatically confirming migration %(migration_id)s for instance " "%(instance_uuid)s" msgstr "" -#: nova/compute/manager.py:3709 +#: nova/compute/manager.py:3710 #, python-format msgid "Instance %s not found" msgstr "" -#: nova/compute/manager.py:3714 +#: nova/compute/manager.py:3715 msgid "In ERROR state" msgstr "" -#: nova/compute/manager.py:3721 +#: nova/compute/manager.py:3722 #, python-format msgid "In states %(vm_state)s/%(task_state)s, not RESIZED/None" msgstr "" -#: nova/compute/manager.py:3732 +#: nova/compute/manager.py:3733 #, python-format msgid "Error auto-confirming resize: %s. Will retry later." msgstr "" -#: nova/compute/manager.py:3748 +#: nova/compute/manager.py:3749 #, python-format msgid "" "Running instance usage audit for host %(host)s from %(begin_time)s to " "%(end_time)s. %(number_instances)s instances." msgstr "" -#: nova/compute/manager.py:3768 +#: nova/compute/manager.py:3769 #, python-format msgid "Failed to generate usage audit for instance on host %s" msgstr "" -#: nova/compute/manager.py:3792 +#: nova/compute/manager.py:3793 msgid "Updating bandwidth usage cache" msgstr "" -#: nova/compute/manager.py:3895 +#: nova/compute/manager.py:3896 msgid "Updating volume usage cache" msgstr "" -#: nova/compute/manager.py:3909 +#: nova/compute/manager.py:3910 msgid "Updating host status" msgstr "" -#: nova/compute/manager.py:3936 +#: nova/compute/manager.py:3937 #, python-format msgid "" "Found %(num_db_instances)s in the database and %(num_vm_instances)s on " "the hypervisor." msgstr "" -#: nova/compute/manager.py:3943 nova/compute/manager.py:3992 +#: nova/compute/manager.py:3944 nova/compute/manager.py:3993 msgid "During sync_power_state the instance has a pending task. Skip." msgstr "" -#: nova/compute/manager.py:3979 +#: nova/compute/manager.py:3980 #, python-format msgid "" "During the sync_power process the instance has moved from host %(src)s to" " host %(dst)s" msgstr "" -#: nova/compute/manager.py:4016 +#: nova/compute/manager.py:4017 msgid "Instance shutdown by itself. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4028 nova/compute/manager.py:4037 -#: nova/compute/manager.py:4067 +#: nova/compute/manager.py:4029 nova/compute/manager.py:4038 +#: nova/compute/manager.py:4068 msgid "error during stop() in sync_power_state." msgstr "" -#: nova/compute/manager.py:4032 +#: nova/compute/manager.py:4033 msgid "Instance is suspended unexpectedly. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4048 +#: nova/compute/manager.py:4049 msgid "Instance is paused unexpectedly. Ignore." msgstr "" -#: nova/compute/manager.py:4054 +#: nova/compute/manager.py:4055 msgid "Instance is unexpectedly not found. Ignore." msgstr "" -#: nova/compute/manager.py:4060 +#: nova/compute/manager.py:4061 msgid "Instance is not stopped. Calling the stop API." msgstr "" -#: nova/compute/manager.py:4076 +#: nova/compute/manager.py:4077 msgid "Instance is not (soft-)deleted." msgstr "" -#: nova/compute/manager.py:4084 +#: nova/compute/manager.py:4085 msgid "CONF.reclaim_instance_interval <= 0, skipping..." msgstr "" -#: nova/compute/manager.py:4097 +#: nova/compute/manager.py:4098 msgid "Reclaiming deleted instance" msgstr "" -#: nova/compute/manager.py:4124 +#: nova/compute/manager.py:4125 #, python-format msgid "Deleting orphan compute node %s" msgstr "" -#: nova/compute/manager.py:4134 nova/compute/resource_tracker.py:321 +#: nova/compute/manager.py:4135 nova/compute/resource_tracker.py:321 #, python-format msgid "No service record for host %s" msgstr "" -#: nova/compute/manager.py:4174 +#: nova/compute/manager.py:4175 #, python-format msgid "" "Detected instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4180 +#: nova/compute/manager.py:4181 #, python-format msgid "" "Destroying instance with name label '%s' which is marked as DELETED but " "still present on host." msgstr "" -#: nova/compute/manager.py:4187 +#: nova/compute/manager.py:4188 #, python-format msgid "Unrecognized value '%s' for CONF.running_deleted_instance_action" msgstr "" -#: nova/compute/manager.py:4214 +#: nova/compute/manager.py:4215 #, python-format msgid "Setting instance back to ACTIVE after: %s" msgstr "" @@ -5077,11 +5072,11 @@ msgstr "" msgid "Missing keys: %s" msgstr "" -#: nova/compute/rpcapi.py:53 +#: nova/compute/rpcapi.py:58 msgid "No compute host specified" msgstr "" -#: nova/compute/rpcapi.py:56 +#: nova/compute/rpcapi.py:61 #, python-format msgid "Unable to find host for Instance %s" msgstr "" @@ -5206,44 +5201,44 @@ msgstr "" msgid "Unrecognized read_deleted value '%s'" msgstr "" -#: nova/db/sqlalchemy/api.py:662 +#: nova/db/sqlalchemy/api.py:650 #, python-format msgid "Invalid floating ip id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:883 +#: nova/db/sqlalchemy/api.py:871 #, python-format msgid "Invalid floating IP %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1168 nova/db/sqlalchemy/api.py:1208 +#: nova/db/sqlalchemy/api.py:1156 nova/db/sqlalchemy/api.py:1196 #, python-format msgid "Invalid fixed IP Address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1345 +#: nova/db/sqlalchemy/api.py:1333 #, python-format msgid "Invalid virtual interface address %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:1438 +#: nova/db/sqlalchemy/api.py:1426 #, python-format msgid "" "Unknown osapi_compute_unique_server_name_scope value: %s Flag must be " "empty, \"global\" or \"project\"" msgstr "" -#: nova/db/sqlalchemy/api.py:1573 +#: nova/db/sqlalchemy/api.py:1561 #, python-format msgid "Invalid instance id %s in request" msgstr "" -#: nova/db/sqlalchemy/api.py:2927 +#: nova/db/sqlalchemy/api.py:2915 #, python-format msgid "Change will make usage less than 0 for the following resources: %(unders)s" msgstr "" -#: nova/db/sqlalchemy/api.py:4458 +#: nova/db/sqlalchemy/api.py:4445 #, python-format msgid "" "Volume(%s) has lower stats then what is in the database. Instance must " @@ -5339,47 +5334,47 @@ msgstr "" msgid "fetching image %s from glance" msgstr "" -#: nova/image/s3.py:335 +#: nova/image/s3.py:332 #, python-format msgid "Failed to download %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:352 +#: nova/image/s3.py:349 #, python-format msgid "Failed to decrypt %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:363 +#: nova/image/s3.py:360 #, python-format msgid "Failed to untar %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:373 +#: nova/image/s3.py:370 #, python-format msgid "Failed to upload %(image_location)s to %(image_path)s" msgstr "" -#: nova/image/s3.py:385 +#: nova/image/s3.py:382 #, python-format msgid "Image %s was deleted underneath us" msgstr "" -#: nova/image/s3.py:400 +#: nova/image/s3.py:397 #, python-format msgid "Failed to decrypt private key: %s" msgstr "" -#: nova/image/s3.py:407 +#: nova/image/s3.py:404 #, python-format msgid "Failed to decrypt initialization vector: %s" msgstr "" -#: nova/image/s3.py:418 +#: nova/image/s3.py:415 #, python-format msgid "Failed to decrypt image file %(image_file)s: %(err)s" msgstr "" -#: nova/image/s3.py:430 +#: nova/image/s3.py:427 msgid "Unsafe filenames in image" msgstr "" @@ -5786,74 +5781,75 @@ msgstr "" msgid "v4 subnets are required for legacy nw_info" msgstr "" -#: nova/network/quantumv2/__init__.py:67 -msgid "quantum authentication failed" +#: nova/network/quantumv2/__init__.py:45 +#, python-format +msgid "Quantum client authentication failed: %s" msgstr "" -#: nova/network/quantumv2/api.py:154 +#: nova/network/quantumv2/api.py:152 #, python-format msgid "allocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:157 +#: nova/network/quantumv2/api.py:155 #, python-format msgid "empty project id for instance %s" msgstr "" -#: nova/network/quantumv2/api.py:203 +#: nova/network/quantumv2/api.py:201 #, python-format msgid "" "Multiple security groups found matching '%s'. Use an ID to be more " "specific." msgstr "" -#: nova/network/quantumv2/api.py:272 +#: nova/network/quantumv2/api.py:270 msgid "Port not found" msgstr "" -#: nova/network/quantumv2/api.py:280 +#: nova/network/quantumv2/api.py:278 #, python-format msgid "Fail to delete port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:320 +#: nova/network/quantumv2/api.py:318 #, python-format msgid "deallocate_for_instance() for %s" msgstr "" -#: nova/network/quantumv2/api.py:329 +#: nova/network/quantumv2/api.py:327 #, python-format msgid "Failed to delete quantum port %(portid)s " msgstr "" -#: nova/network/quantumv2/api.py:351 +#: nova/network/quantumv2/api.py:349 #, python-format msgid "Failed to delete quantum port %(port_id)s " msgstr "" -#: nova/network/quantumv2/api.py:375 +#: nova/network/quantumv2/api.py:373 #, python-format msgid "get_instance_nw_info() for %s" msgstr "" -#: nova/network/quantumv2/api.py:407 +#: nova/network/quantumv2/api.py:405 #, python-format msgid "" "Unable to update port %(portid)s on subnet %(subnet_id)s with failure: " "%(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:437 +#: nova/network/quantumv2/api.py:435 #, python-format msgid "Unable to update port %(portid)s with failure: %(exception)s" msgstr "" -#: nova/network/quantumv2/api.py:447 +#: nova/network/quantumv2/api.py:445 #, python-format msgid "validate_networks() for %s" msgstr "" -#: nova/network/quantumv2/api.py:690 +#: nova/network/quantumv2/api.py:688 #, python-format msgid "Multiple floating IP pools matches found for name '%s'" msgstr "" @@ -5947,12 +5943,12 @@ msgstr "" msgid "Invalid version string" msgstr "" -#: nova/objects/base.py:201 +#: nova/objects/base.py:202 #, python-format msgid "Unable to instantiate unregistered object type %(objtype)s" msgstr "" -#: nova/objects/base.py:303 +#: nova/objects/base.py:304 #, python-format msgid "Cannot load '%(attrname)s' in the base class" msgstr "" @@ -6155,11 +6151,21 @@ msgstr "" msgid "Waiting on %d children to exit" msgstr "" -#: nova/openstack/common/strutils.py:72 +#: nova/openstack/common/strutils.py:86 #, python-format msgid "Unrecognized value '%(val)s', acceptable values are: %(acceptable)s" msgstr "" +#: nova/openstack/common/strutils.py:182 +#, python-format +msgid "Invalid string format: %s" +msgstr "" + +#: nova/openstack/common/strutils.py:189 +#, python-format +msgid "Unknown byte multiplier: %s" +msgstr "" + #: nova/openstack/common/db/sqlalchemy/session.py:462 msgid "DB exception wrapped." msgstr "" @@ -7114,11 +7120,11 @@ msgstr "" msgid "wrong host/node" msgstr "" -#: nova/tests/compute/test_compute.py:9400 +#: nova/tests/compute/test_compute.py:9437 msgid "spawn error" msgstr "" -#: nova/tests/db/test_migrations.py:1772 +#: nova/tests/db/test_migrations.py:1801 #, python-format msgid "" "The following migrations are missing a downgrade:\n" @@ -7309,20 +7315,20 @@ msgstr "" msgid "Adding provider rule: %s" msgstr "" -#: nova/virt/images.py:113 +#: nova/virt/images.py:114 msgid "Snapshot list encountered but no header found!" msgstr "" -#: nova/virt/images.py:202 +#: nova/virt/images.py:203 msgid "'qemu-img info' parsing failed." msgstr "" -#: nova/virt/images.py:208 +#: nova/virt/images.py:209 #, python-format msgid "fmt=%(fmt)s backed by: %(backing_file)s" msgstr "" -#: nova/virt/images.py:220 +#: nova/virt/images.py:221 #, python-format msgid "Converted to raw, but format is now %s" msgstr "" @@ -7587,15 +7593,15 @@ msgstr "" msgid "no pif for vif_uuid=%s" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:111 +#: nova/virt/baremetal/virtual_power_driver.py:109 msgid "virtual_power_ssh_host not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:115 +#: nova/virt/baremetal/virtual_power_driver.py:113 msgid "virtual_power_host_user not defined. Can not Start" msgstr "" -#: nova/virt/baremetal/virtual_power_driver.py:121 +#: nova/virt/baremetal/virtual_power_driver.py:119 msgid "virtual_power_host_pass/key not set. Can not Start" msgstr "" @@ -8632,7 +8638,7 @@ msgstr "" msgid "Invalid cachemode %(cache_mode)s specified for disk type %(disk_type)s." msgstr "" -#: nova/virt/libvirt/driver.py:567 +#: nova/virt/libvirt/driver.py:564 #, python-format msgid "Nova requires libvirt version %(major)i.%(minor)i.%(micro)i or greater." msgstr "" @@ -11315,32 +11321,32 @@ msgstr "" msgid "Error in handshake: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:116 +#: nova/vnc/xvp_proxy.py:115 #, python-format msgid "Invalid request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:136 +#: nova/vnc/xvp_proxy.py:135 #, python-format msgid "Request: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:139 +#: nova/vnc/xvp_proxy.py:138 #, python-format msgid "Request made with missing token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:149 +#: nova/vnc/xvp_proxy.py:148 #, python-format msgid "Request made with invalid token: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:156 +#: nova/vnc/xvp_proxy.py:155 #, python-format msgid "Unexpected error: %s" msgstr "" -#: nova/vnc/xvp_proxy.py:176 +#: nova/vnc/xvp_proxy.py:175 #, python-format msgid "Starting nova-xvpvncproxy node (version %s)" msgstr "" @@ -11358,9 +11364,9 @@ msgstr "" msgid "status must be 'available'" msgstr "" -#~ msgid "Cannot reboot instance: %s" +#~ msgid "Certificate %(certificate_id)s not found." #~ msgstr "" -#~ msgid "No Volume Connector found." +#~ msgid "quantum authentication failed" #~ msgstr "" diff --git a/nova/notifications.py b/nova/notifications.py index 13e2a8fca..a90fa855e 100644 --- a/nova/notifications.py +++ b/nova/notifications.py @@ -106,8 +106,12 @@ def send_update(context, old_instance, new_instance, service=None, host=None): else: try: + old_display_name = None + if new_instance["display_name"] != old_instance["display_name"]: + old_display_name = old_instance["display_name"] _send_instance_update_notification(context, new_instance, - service=service, host=host) + service=service, host=host, + old_display_name=old_display_name) except Exception: LOG.exception(_("Failed to send state update notification"), instance=new_instance) @@ -155,7 +159,7 @@ def send_update_with_states(context, instance, old_vm_state, new_vm_state, def _send_instance_update_notification(context, instance, old_vm_state=None, old_task_state=None, new_vm_state=None, new_task_state=None, - service="compute", host=None): + service="compute", host=None, old_display_name=None): """Send 'compute.instance.update' notification to inform observers about instance state changes. """ @@ -185,6 +189,10 @@ def _send_instance_update_notification(context, instance, old_vm_state=None, bw = bandwidth_usage(instance, audit_start) payload["bandwidth"] = bw + # add old display name if it is changed + if old_display_name: + payload["old_display_name"] = old_display_name + publisher_id = notifier_api.publisher_id(service, host) notifier_api.notify(context, publisher_id, 'compute.instance.update', diff --git a/nova/openstack/common/gettextutils.py b/nova/openstack/common/gettextutils.py index 2d2e94a7c..96f9b49db 100644 --- a/nova/openstack/common/gettextutils.py +++ b/nova/openstack/common/gettextutils.py @@ -2,6 +2,7 @@ # Copyright 2012 Red Hat, Inc. # All Rights Reserved. +# Copyright 2013 IBM Corp. # # 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 @@ -23,8 +24,11 @@ Usual usage in an openstack.common module: from nova.openstack.common.gettextutils import _ """ +import copy import gettext +import logging.handlers import os +import UserString _localedir = os.environ.get('nova'.upper() + '_LOCALEDIR') _t = gettext.translation('nova', localedir=_localedir, fallback=True) @@ -48,3 +52,175 @@ def install(domain): gettext.install(domain, localedir=os.environ.get(domain.upper() + '_LOCALEDIR'), unicode=True) + + +""" +Lazy gettext functionality. + +The following is an attempt to introduce a deferred way +to do translations on messages in OpenStack. We attempt to +override the standard _() function and % (format string) operation +to build Message objects that can later be translated when we have +more information. Also included is an example LogHandler that +translates Messages to an associated locale, effectively allowing +many logs, each with their own locale. +""" + + +def get_lazy_gettext(domain): + """Assemble and return a lazy gettext function for a given domain. + + Factory method for a project/module to get a lazy gettext function + for its own translation domain (i.e. nova, glance, cinder, etc.) + """ + + def _lazy_gettext(msg): + """Create and return a Message object. + + Message encapsulates a string so that we can translate it later when + needed. + """ + return Message(msg, domain) + + return _lazy_gettext + + +class Message(UserString.UserString, object): + """Class used to encapsulate translatable messages.""" + def __init__(self, msg, domain): + # _msg is the gettext msgid and should never change + self._msg = msg + self._left_extra_msg = '' + self._right_extra_msg = '' + self.params = None + self.locale = None + self.domain = domain + + @property + def data(self): + # NOTE(mrodden): this should always resolve to a unicode string + # that best represents the state of the message currently + + localedir = os.environ.get(self.domain.upper() + '_LOCALEDIR') + if self.locale: + lang = gettext.translation(self.domain, + localedir=localedir, + languages=[self.locale], + fallback=True) + else: + # use system locale for translations + lang = gettext.translation(self.domain, + localedir=localedir, + fallback=True) + + full_msg = (self._left_extra_msg + + lang.ugettext(self._msg) + + self._right_extra_msg) + + if self.params is not None: + full_msg = full_msg % self.params + + return unicode(full_msg) + + def _save_parameters(self, other): + # we check for None later to see if + # we actually have parameters to inject, + # so encapsulate if our parameter is actually None + if other is None: + self.params = (other, ) + else: + self.params = copy.deepcopy(other) + + return self + + # overrides to be more string-like + def __unicode__(self): + return self.data + + def __str__(self): + return self.data.encode('utf-8') + + def __getstate__(self): + to_copy = ['_msg', '_right_extra_msg', '_left_extra_msg', + 'domain', 'params', 'locale'] + new_dict = self.__dict__.fromkeys(to_copy) + for attr in to_copy: + new_dict[attr] = copy.deepcopy(self.__dict__[attr]) + + return new_dict + + def __setstate__(self, state): + for (k, v) in state.items(): + setattr(self, k, v) + + # operator overloads + def __add__(self, other): + copied = copy.deepcopy(self) + copied._right_extra_msg += other.__str__() + return copied + + def __radd__(self, other): + copied = copy.deepcopy(self) + copied._left_extra_msg += other.__str__() + return copied + + def __mod__(self, other): + # do a format string to catch and raise + # any possible KeyErrors from missing parameters + self.data % other + copied = copy.deepcopy(self) + return copied._save_parameters(other) + + def __mul__(self, other): + return self.data * other + + def __rmul__(self, other): + return other * self.data + + def __getitem__(self, key): + return self.data[key] + + def __getslice__(self, start, end): + return self.data.__getslice__(start, end) + + def __getattribute__(self, name): + # NOTE(mrodden): handle lossy operations that we can't deal with yet + # These override the UserString implementation, since UserString + # uses our __class__ attribute to try and build a new message + # after running the inner data string through the operation. + # At that point, we have lost the gettext message id and can just + # safely resolve to a string instead. + ops = ['capitalize', 'center', 'decode', 'encode', + 'expandtabs', 'ljust', 'lstrip', 'replace', 'rjust', 'rstrip', + 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] + if name in ops: + return getattr(self.data, name) + else: + return UserString.UserString.__getattribute__(self, name) + + +class LocaleHandler(logging.Handler): + """Handler that can have a locale associated to translate Messages. + + A quick example of how to utilize the Message class above. + LocaleHandler takes a locale and a target logging.Handler object + to forward LogRecord objects to after translating the internal Message. + """ + + def __init__(self, locale, target): + """Initialize a LocaleHandler + + :param locale: locale to use for translating messages + :param target: logging.Handler object to forward + LogRecord objects to after translation + """ + logging.Handler.__init__(self) + self.locale = locale + self.target = target + + def emit(self, record): + if isinstance(record.msg, Message): + # set the locale and resolve to a string + record.msg.locale = self.locale + + self.target.emit(record) diff --git a/nova/scheduler/driver.py b/nova/scheduler/driver.py index 5fed1e397..6a429f526 100644 --- a/nova/scheduler/driver.py +++ b/nova/scheduler/driver.py @@ -60,8 +60,8 @@ def handle_schedule_error(context, ex, instance_uuid, request_spec): if not isinstance(ex, exception.NoValidHost): LOG.exception(_("Exception during scheduler.run_instance")) state = vm_states.ERROR.upper() - LOG.warning(_('Setting instance to %(state)s state.'), - locals(), instance_uuid=instance_uuid) + LOG.warning(_('Setting instance to %s state.'), state, + instance_uuid=instance_uuid) # update instance state and notify on the transition (old_ref, new_ref) = db.instance_update_and_get_original(context, @@ -94,6 +94,14 @@ def instance_update_db(context, instance_uuid, extra_values=None): values = {'host': None, 'node': None, 'scheduled_at': now} if extra_values: values.update(extra_values) + # Get the instance_group if it exists. This will be written to the + # system_metadata as it will be used when the VM is deleted + system_metadata = extra_values.get('system_metadata', None) + if system_metadata: + instance_group = system_metadata.get('instance_group', None) + if instance_group: + conductor_api.instance_group_members_add(context, + instance_group, [instance_uuid]) return db.instance_update(context, instance_uuid, values) @@ -139,15 +147,17 @@ class Scheduler(object): for service in services if self.servicegroup_api.service_is_up(service)] - def group_hosts(self, context, group): - """Return the list of hosts that have VM's from the group.""" + def instance_group_data(self, context, group_uuid): + """Return the the group data for the instance group.""" - # The system_metadata 'group' will be filtered - members = db.instance_get_all_by_filters(context, - {'deleted': False, 'group': group}) - return [member['host'] - for member in members - if member.get('host') is not None] + return conductor_api.instance_group_get_all(context, group_uuid) + + def instance_group_hosts(self, context, instance_group): + """Return the list of hosts that have VM's from the instance_group.""" + + instances = instance_group['instances'] + return [instance['host'] for instance in instances + if instance.get('host') is not None] def schedule_prep_resize(self, context, image, request_spec, filter_properties, instance, instance_type, @@ -339,7 +349,9 @@ class Scheduler(object): reason = _("Unable to migrate %(instance_uuid)s to %(dest)s: " "Lack of memory(host:%(avail)s <= " "instance:%(mem_inst)s)") - raise exception.MigrationPreCheckError(reason=reason % locals()) + raise exception.MigrationPreCheckError(reason=reason % + {'instance_uuid': instance_uuid, 'dest': dest, 'avail': avail, + 'mem_inst': mem_inst}) def _get_compute_info(self, context, host): """get compute node's information specified by key diff --git a/nova/scheduler/filter_scheduler.py b/nova/scheduler/filter_scheduler.py index 08cb6a20e..a75bf286f 100644 --- a/nova/scheduler/filter_scheduler.py +++ b/nova/scheduler/filter_scheduler.py @@ -173,11 +173,11 @@ class FilterScheduler(driver.Scheduler): # Update the metadata if necessary scheduler_hints = filter_properties.get('scheduler_hints') or {} - group = scheduler_hints.get('group', None) + group_uuid = scheduler_hints.get('instance_group', None) values = None - if group: + if group_uuid: values = request_spec['instance_properties']['system_metadata'] - values.update({'group': group}) + values.update({'instance_group': group_uuid}) values = {'system_metadata': values} updated_instance = driver.instance_update_db(context, @@ -300,17 +300,19 @@ class FilterScheduler(driver.Scheduler): instance_properties = request_spec['instance_properties'] instance_type = request_spec.get("instance_type", None) - # Get the group + # Get the instance_group update_group_hosts = False scheduler_hints = filter_properties.get('scheduler_hints') or {} - group = scheduler_hints.get('group', None) - if group: - group_hosts = self.group_hosts(elevated, group) - update_group_hosts = True - if 'group_hosts' not in filter_properties: - filter_properties.update({'group_hosts': []}) - configured_hosts = filter_properties['group_hosts'] - filter_properties['group_hosts'] = configured_hosts + group_hosts + group_uuid = scheduler_hints.get('instance_group', None) + if group_uuid: + group_data = self.instance_group_data(elevated, group_uuid) + if 'anti-affinity' in group_data['instance_group']['policies']: + update_group_hosts = True + group_hosts = self.instance_group_hosts(elevated, group_data) + if 'group_hosts' not in filter_properties: + filter_properties.update({'group_hosts': []}) + user_hosts = filter_properties['group_hosts'] + filter_properties['group_hosts'] = user_hosts + group_hosts config_options = self._get_configuration_options() diff --git a/nova/scheduler/filters/aggregate_multitenancy_isolation.py b/nova/scheduler/filters/aggregate_multitenancy_isolation.py index d9192af52..1a9f6bf58 100644 --- a/nova/scheduler/filters/aggregate_multitenancy_isolation.py +++ b/nova/scheduler/filters/aggregate_multitenancy_isolation.py @@ -41,7 +41,6 @@ class AggregateMultiTenancyIsolation(filters.BaseHostFilter): if metadata != {}: if tenant_id not in metadata["filter_tenant_id"]: - LOG.debug(_("%(host_state)s fails tenant id on " - "aggregate"), locals()) + LOG.debug(_("%s fails tenant id on aggregate"), host_state) return False return True diff --git a/nova/scheduler/host_manager.py b/nova/scheduler/host_manager.py index b5fbb8594..d5081ace5 100644 --- a/nova/scheduler/host_manager.py +++ b/nova/scheduler/host_manager.py @@ -377,12 +377,14 @@ class HostManager(object): if service_name != 'compute': LOG.debug(_('Ignoring %(service_name)s service update ' - 'from %(host)s'), locals()) + 'from %(host)s'), {'service_name': service_name, + 'host': host}) return state_key = (host, capabilities.get('hypervisor_hostname')) LOG.debug(_("Received %(service_name)s service update from " - "%(state_key)s.") % locals()) + "%(state_key)s."), {'service_name': service_name, + 'state_key': state_key}) # Copy the capabilities, so we don't modify the original dict capab_copy = dict(capabilities) capab_copy["timestamp"] = timeutils.utcnow() # Reported time @@ -423,7 +425,7 @@ class HostManager(object): for state_key in dead_nodes: host, node = state_key LOG.info(_("Removing dead compute node %(host)s:%(node)s " - "from scheduler") % locals()) + "from scheduler") % {'host': host, 'node': node}) del self.host_state_map[state_key] return self.host_state_map.itervalues() diff --git a/nova/scheduler/manager.py b/nova/scheduler/manager.py index 9429a0662..5c99feb03 100644 --- a/nova/scheduler/manager.py +++ b/nova/scheduler/manager.py @@ -208,7 +208,8 @@ class SchedulerManager(manager.Manager): # The refactoring could go further but trying to minimize changes # for essex timeframe - LOG.warning(_("Failed to schedule_%(method)s: %(ex)s") % locals()) + LOG.warning(_("Failed to schedule_%(method)s: %(ex)s"), + {'method': method, 'ex': ex}) vm_state = updates['vm_state'] properties = request_spec.get('instance_properties', {}) @@ -222,8 +223,8 @@ class SchedulerManager(manager.Manager): for instance_uuid in request_spec.get('instance_uuids') or uuids: if instance_uuid: state = vm_state.upper() - LOG.warning(_('Setting instance to %(state)s state.'), - locals(), instance_uuid=instance_uuid) + LOG.warning(_('Setting instance to %s state.'), state, + instance_uuid=instance_uuid) # update instance state and notify on the transition (old_ref, new_ref) = self.db.instance_update_and_get_original( diff --git a/nova/scheduler/scheduler_options.py b/nova/scheduler/scheduler_options.py index bae470d1b..5ba2117cc 100644 --- a/nova/scheduler/scheduler_options.py +++ b/nova/scheduler/scheduler_options.py @@ -69,15 +69,15 @@ class SchedulerOptions(object): except os.error as e: with excutils.save_and_reraise_exception(): LOG.exception(_("Could not stat scheduler options file " - "%(filename)s: '%(e)s'"), locals()) + "%(filename)s: '%(e)s'"), + {'filename': filename, 'e': e}) def _load_file(self, handle): """Decode the JSON file. Broken out for testing.""" try: return json.load(handle) except ValueError as e: - LOG.exception(_("Could not decode scheduler options: " - "'%(e)s'") % locals()) + LOG.exception(_("Could not decode scheduler options: '%s'"), e) return {} def _get_time_now(self): diff --git a/nova/scheduler/utils.py b/nova/scheduler/utils.py index d17ab89b2..028c72ff7 100644 --- a/nova/scheduler/utils.py +++ b/nova/scheduler/utils.py @@ -24,10 +24,10 @@ def build_request_spec(image, instances): The request_spec assumes that all instances to be scheduled are the same type. """ - instance = jsonutils.to_primitive(instances[0]) + instance = instances[0] request_spec = { 'image': image, 'instance_properties': instance, 'instance_type': flavors.extract_flavor(instance), 'instance_uuids': [inst['uuid'] for inst in instances]} - return request_spec + return jsonutils.to_primitive(request_spec) diff --git a/nova/tests/compute/test_compute.py b/nova/tests/compute/test_compute.py index fe3d3e21e..dc828cef8 100644 --- a/nova/tests/compute/test_compute.py +++ b/nova/tests/compute/test_compute.py @@ -2257,6 +2257,7 @@ class ComputeTestCase(BaseTestCase): self.assertTrue('display_name' in payload) self.assertTrue('created_at' in payload) self.assertTrue('launched_at' in payload) + self.assertTrue('fixed_ips' in payload) self.assertTrue(payload['launched_at']) image_ref_url = glance.generate_image_url(FAKE_IMAGE_REF) self.assertEquals(payload['image_ref_url'], image_ref_url) diff --git a/nova/tests/conductor/test_conductor.py b/nova/tests/conductor/test_conductor.py index 7a33cfbb9..b86d3320a 100644 --- a/nova/tests/conductor/test_conductor.py +++ b/nova/tests/conductor/test_conductor.py @@ -340,7 +340,25 @@ class _BaseTestCase(object): self.conductor.instance_destroy(self.context, {'uuid': 'fake-uuid'}) def test_instance_info_cache_delete(self): + self.mox.StubOutWithMock(db, 'instance_system_metadata_get') self.mox.StubOutWithMock(db, 'instance_info_cache_delete') + fake_data = {} + db.instance_system_metadata_get(self.context, + 'fake-uuid').AndReturn(fake_data) + db.instance_info_cache_delete(self.context, 'fake-uuid') + self.mox.ReplayAll() + self.conductor.instance_info_cache_delete(self.context, + {'uuid': 'fake-uuid'}) + + def test_instance_info_cache_delete_with_instance_group(self): + self.mox.StubOutWithMock(db, 'instance_system_metadata_get') + self.mox.StubOutWithMock(db, 'instance_group_member_delete') + self.mox.StubOutWithMock(db, 'instance_info_cache_delete') + fake_data = {'instance_group': 'fake-group'} + db.instance_system_metadata_get(self.context, + 'fake-uuid').AndReturn(fake_data) + db.instance_group_member_delete(self.context, 'fake-group', + 'fake-uuid') db.instance_info_cache_delete(self.context, 'fake-uuid') self.mox.ReplayAll() self.conductor.instance_info_cache_delete(self.context, @@ -438,6 +456,38 @@ class _BaseTestCase(object): 'fake-values') self.assertEqual(result, 'fake-result') + def test_instance_group_members_add(self): + self.mox.StubOutWithMock(db, 'instance_group_members_add') + db.instance_group_members_add(self.context, 'fake-uuid', + 'fake-members', set_delete=False).AndReturn('fake-members') + self.mox.ReplayAll() + result = self.conductor.instance_group_members_add(self.context, + 'fake-uuid', 'fake-members', set_delete=False) + self.assertEqual(result, 'fake-members') + + def test_instance_group_member_delete(self): + self.mox.StubOutWithMock(db, 'instance_group_member_delete') + db.instance_group_member_delete(self.context, 'fake-uuid', + 'fake-instance-id').AndReturn('fake-result') + self.mox.ReplayAll() + result = self.conductor.instance_group_member_delete(self.context, + 'fake-uuid', 'fake-instance-id') + self.assertEqual(result, 'fake-result') + + def test_instance_group_get_all(self): + self.mox.StubOutWithMock(db, 'instance_group_get') + self.mox.StubOutWithMock(db, 'instance_get_by_uuid') + group = {'uuid': 'fake-uuid', + 'members': ['fake-instance-id']} + db.instance_group_get(self.context, 'fake-uuid').AndReturn(group) + db.instance_get_by_uuid(self.context, + 'fake-instance-id').AndReturn('fake-instance') + self.mox.ReplayAll() + result = self.conductor.instance_group_get_all(self.context, + 'fake-uuid') + self.assertEqual(result, {'instance_group': group, + 'instances': ['fake-instance']}) + def test_task_log_get(self): self.mox.StubOutWithMock(db, 'task_log_get') db.task_log_get(self.context, 'task', 'begin', 'end', 'host', diff --git a/nova/tests/db/test_migrations.py b/nova/tests/db/test_migrations.py index 812f0d8ae..a9ea29e69 100644 --- a/nova/tests/db/test_migrations.py +++ b/nova/tests/db/test_migrations.py @@ -1775,6 +1775,13 @@ class TestBaremetalMigrations(BaseMigrationTestCase, CommonTestsMixIn): columns = [c.name for c in bm_nodes.columns] self.assertNotIn(u'prov_mac_address', columns) + def _check_008(self, engine, data): + self.assertRaises(sqlalchemy.exc.NoSuchTableError, + db_utils.get_table, engine, 'bm_pxe_ips') + + def _post_downgrade_008(self, engine): + db_utils.get_table(engine, 'bm_pxe_ips') + class ProjectTestCase(test.TestCase): diff --git a/nova/tests/scheduler/test_filter_scheduler.py b/nova/tests/scheduler/test_filter_scheduler.py index d6cc7808e..a02889df9 100644 --- a/nova/tests/scheduler/test_filter_scheduler.py +++ b/nova/tests/scheduler/test_filter_scheduler.py @@ -532,7 +532,7 @@ class FilterSchedulerTestCase(test_scheduler.SchedulerTestCase): def test_basic_schedule_run_instances_anti_affinity(self): filter_properties = {'scheduler_hints': - {'group': 'cats'}} + {'instance_group': 'fake_uuid'}} # Request spec 1 instance_opts1 = {'project_id': 1, 'os_type': 'Linux', 'memory_mb': 512, 'root_gb': 512, @@ -562,19 +562,24 @@ class FilterSchedulerTestCase(test_scheduler.SchedulerTestCase): self.mox.StubOutWithMock(driver, 'instance_update_db') self.mox.StubOutWithMock(compute_rpcapi.ComputeAPI, 'run_instance') - self.mox.StubOutWithMock(sched, 'group_hosts') + self.mox.StubOutWithMock(sched, 'instance_group_data') instance1_1 = {'uuid': 'fake-uuid1-1'} instance1_2 = {'uuid': 'fake-uuid1-2'} - sched.group_hosts(mox.IgnoreArg(), 'cats').AndReturn([]) + group_data = {'instance_group': {'uuid': 'fake_uuid', + 'policies': ['anti-affinity']}, + 'instances': []} + sched.instance_group_data(mox.IgnoreArg(), + 'fake_uuid').AndReturn(group_data) def inc_launch_index1(*args, **kwargs): request_spec1['instance_properties']['launch_index'] = ( request_spec1['instance_properties']['launch_index'] + 1) expected_metadata = {'system_metadata': - {'system': 'metadata', 'group': 'cats'}} + {'system': 'metadata', + 'instance_group': 'fake_uuid'}} driver.instance_update_db(fake_context, instance1_1['uuid'], extra_values=expected_metadata).WithSideEffects( inc_launch_index1).AndReturn(instance1_1) diff --git a/nova/tests/test_notifications.py b/nova/tests/test_notifications.py index 23fe4c82b..0d7c0e7a8 100644 --- a/nova/tests/test_notifications.py +++ b/nova/tests/test_notifications.py @@ -295,13 +295,17 @@ class NotificationsTestCase(test.TestCase): self.assertEquals(payload["access_ip_v6"], access_ip_v6) def test_send_name_update(self): - notifications.send_update(self.context, self.instance, self.instance) + param = {"display_name": "new_display_name"} + new_name_inst = self._wrapped_create(params=param) + notifications.send_update(self.context, self.instance, new_name_inst) self.assertEquals(1, len(test_notifier.NOTIFICATIONS)) notif = test_notifier.NOTIFICATIONS[0] payload = notif["payload"] - display_name = self.instance["display_name"] + old_display_name = self.instance["display_name"] + new_display_name = new_name_inst["display_name"] - self.assertEquals(payload["display_name"], display_name) + self.assertEquals(payload["old_display_name"], old_display_name) + self.assertEquals(payload["display_name"], new_display_name) def test_send_no_state_change(self): called = [False] diff --git a/nova/tests/virt/baremetal/db/test_bm_pxe_ip.py b/nova/tests/virt/baremetal/db/test_bm_pxe_ip.py deleted file mode 100644 index 85f3e2f4b..000000000 --- a/nova/tests/virt/baremetal/db/test_bm_pxe_ip.py +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright (c) 2012 NTT DOCOMO, INC. -# 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. - -""" -Bare-metal DB testcase for BareMetalPxeIp -""" - -from nova import exception -from nova.openstack.common.db import exception as db_exc -from nova.tests.virt.baremetal.db import base -from nova.tests.virt.baremetal.db import utils -from nova.virt.baremetal import db - - -class BareMetalPxeIpTestCase(base.BMDBTestCase): - - def _create_pxe_ip(self): - i1 = utils.new_bm_pxe_ip(address='10.1.1.1', - server_address='10.1.1.101') - i2 = utils.new_bm_pxe_ip(address='10.1.1.2', - server_address='10.1.1.102') - - i1_ref = db.bm_pxe_ip_create_direct(self.context, i1) - self.assertTrue(i1_ref['id'] is not None) - self.assertEqual(i1_ref['address'], '10.1.1.1') - self.assertEqual(i1_ref['server_address'], '10.1.1.101') - - i2_ref = db.bm_pxe_ip_create_direct(self.context, i2) - self.assertTrue(i2_ref['id'] is not None) - self.assertEqual(i2_ref['address'], '10.1.1.2') - self.assertEqual(i2_ref['server_address'], '10.1.1.102') - - self.i1 = i1_ref - self.i2 = i2_ref - - def test_unuque_address(self): - self._create_pxe_ip() - - # address duplicates - i = utils.new_bm_pxe_ip(address='10.1.1.1', - server_address='10.1.1.201') - self.assertRaises(db_exc.DBError, - db.bm_pxe_ip_create_direct, - self.context, i) - - # server_address duplicates - i = utils.new_bm_pxe_ip(address='10.1.1.3', - server_address='10.1.1.101') - self.assertRaises(db_exc.DBError, - db.bm_pxe_ip_create_direct, - self.context, i) - - db.bm_pxe_ip_destroy(self.context, self.i1['id']) - i = utils.new_bm_pxe_ip(address='10.1.1.1', - server_address='10.1.1.101') - ref = db.bm_pxe_ip_create_direct(self.context, i) - self.assertTrue(ref is not None) - - def test_bm_pxe_ip_associate(self): - self._create_pxe_ip() - node = db.bm_node_create(self.context, utils.new_bm_node()) - ip_id = db.bm_pxe_ip_associate(self.context, node['id']) - ref = db.bm_pxe_ip_get(self.context, ip_id) - self.assertEqual(ref['bm_node_id'], node['id']) - - def test_bm_pxe_ip_associate_raise(self): - self._create_pxe_ip() - node_id = 123 - self.assertRaises(exception.NovaException, - db.bm_pxe_ip_associate, - self.context, node_id) - - def test_delete_by_address(self): - self._create_pxe_ip() - db.bm_pxe_ip_destroy_by_address(self.context, '10.1.1.1') - del_ref = db.bm_pxe_ip_get(self.context, self.i1['id']) - self.assertTrue(del_ref is None) - - def test_delete_by_address_not_exist(self): - self._create_pxe_ip() - del_ref = db.bm_pxe_ip_destroy_by_address(self.context, '10.11.12.13') - self.assertTrue(del_ref is None) diff --git a/nova/tests/virt/baremetal/db/utils.py b/nova/tests/virt/baremetal/db/utils.py index c3b3cff5f..6faeb13d8 100644 --- a/nova/tests/virt/baremetal/db/utils.py +++ b/nova/tests/virt/baremetal/db/utils.py @@ -39,18 +39,6 @@ def new_bm_node(**kwargs): return h -def new_bm_pxe_ip(**kwargs): - x = bm_models.BareMetalPxeIp() - x.id = kwargs.pop('id', None) - x.address = kwargs.pop('address', None) - x.server_address = kwargs.pop('server_address', None) - x.bm_node_id = kwargs.pop('bm_node_id', None) - if len(kwargs) > 0: - raise test.TestingException("unknown field: %s" - % ','.join(kwargs.keys())) - return x - - def new_bm_interface(**kwargs): x = bm_models.BareMetalInterface() x.id = kwargs.pop('id', None) diff --git a/nova/tests/virt/xenapi/test_xenapi.py b/nova/tests/virt/xenapi/test_xenapi.py index 91d4f0770..f6ff23aba 100644 --- a/nova/tests/virt/xenapi/test_xenapi.py +++ b/nova/tests/virt/xenapi/test_xenapi.py @@ -31,6 +31,7 @@ from nova.compute import power_state from nova.compute import task_states from nova.compute import vm_states from nova import context +from nova import crypto from nova import db from nova import exception from nova.openstack.common import importutils @@ -983,13 +984,14 @@ class XenAPIVMTestCase(stubs.XenAPITestBase): actual_injected_files.append((path, contents)) return jsonutils.dumps({'returncode': '0', 'message': 'success'}) - def noop(*args, **kwargs): - pass - self.stubs.Set(stubs.FakeSessionForVMTests, '_plugin_agent_inject_file', fake_inject_file) - self.stubs.Set(agent.XenAPIBasedAgent, - 'set_admin_password', noop) + + def fake_encrypt_text(sshkey, new_pass): + self.assertEqual("fake_keydata", sshkey) + return "fake" + + self.stubs.Set(crypto, 'ssh_encrypt_text', fake_encrypt_text) expected_data = ('\n# The following ssh key was injected by ' 'Nova\nfake_keydata\n') @@ -1020,6 +1022,93 @@ class XenAPIVMTestCase(stubs.XenAPITestBase): self.check_vm_params_for_linux() self.assertEquals(actual_injected_files, injected_files) + def test_spawn_agent_upgrade(self): + self.flags(xenapi_use_agent_default=True) + actual_injected_files = [] + + def fake_agent_build(_self, *args): + return {"version": "1.1.0", "architecture": "x86-64", + "hypervisor": "xen", "os": "windows", + "url": "url", "md5hash": "asdf"} + + self.stubs.Set(self.conn.virtapi, 'agent_build_get_by_triple', + fake_agent_build) + + self._test_spawn(IMAGE_VHD, None, None, + os_type="linux", architecture="x86-64") + + def test_spawn_agent_upgrade_fails_silently(self): + self.flags(xenapi_use_agent_default=True) + actual_injected_files = [] + + def fake_agent_build(_self, *args): + return {"version": "1.1.0", "architecture": "x86-64", + "hypervisor": "xen", "os": "windows", + "url": "url", "md5hash": "asdf"} + + self.stubs.Set(self.conn.virtapi, 'agent_build_get_by_triple', + fake_agent_build) + + def fake_agent_update(self, method, args): + raise xenapi_fake.Failure(["fake_error"]) + + self.stubs.Set(stubs.FakeSessionForVMTests, + '_plugin_agent_agentupdate', fake_agent_update) + + self._test_spawn(IMAGE_VHD, None, None, + os_type="linux", architecture="x86-64") + + def _test_spawn_fails_with(self, trigger, expected_exception): + self.flags(xenapi_use_agent_default=True) + self.flags(agent_version_timeout=0) + actual_injected_files = [] + + def fake_agent_version(self, method, args): + raise xenapi_fake.Failure([trigger]) + + self.stubs.Set(stubs.FakeSessionForVMTests, + '_plugin_agent_version', fake_agent_version) + + self.assertRaises(expected_exception, self._test_spawn, + IMAGE_VHD, None, None, os_type="linux", architecture="x86-64") + + def test_spawn_fails_with_agent_timeout(self): + self._test_spawn_fails_with("TIMEOUT:fake", exception.AgentTimeout) + + def test_spawn_fails_with_agent_not_implemented(self): + self._test_spawn_fails_with("NOT IMPLEMENTED:fake", + exception.AgentNotImplemented) + + def test_spawn_fails_with_agent_error(self): + self._test_spawn_fails_with("fake_error", exception.AgentError) + + def test_spawn_fails_with_agent_bad_return(self): + self.flags(xenapi_use_agent_default=True) + self.flags(agent_version_timeout=0) + actual_injected_files = [] + + def fake_agent_version(self, method, args): + return xenapi_fake.as_json(returncode='-1', message='fake') + self.stubs.Set(stubs.FakeSessionForVMTests, + '_plugin_agent_version', fake_agent_version) + + self.assertRaises(exception.AgentError, self._test_spawn, + IMAGE_VHD, None, None, os_type="linux", architecture="x86-64") + + def test_spawn_fails_agent_not_implemented(self): + # Test spawning with injected_files. + self.flags(xenapi_use_agent_default=True) + self.flags(agent_version_timeout=0) + actual_injected_files = [] + + def fake_agent_version(self, method, args): + raise xenapi_fake.Failure(["NOT IMPLEMENTED:fake"]) + self.stubs.Set(stubs.FakeSessionForVMTests, + '_plugin_agent_version', fake_agent_version) + + self.assertRaises(exception.AgentNotImplemented, self._test_spawn, + IMAGE_VHD, None, None, os_type="linux", architecture="x86-64") + def test_rescue(self): instance = self._create_instance() session = xenapi_conn.XenAPISession('test_url', 'root', 'test_pass', diff --git a/nova/virt/baremetal/db/api.py b/nova/virt/baremetal/db/api.py index 91edc05d9..3943b7902 100644 --- a/nova/virt/baremetal/db/api.py +++ b/nova/virt/baremetal/db/api.py @@ -121,42 +121,6 @@ def bm_node_associate_and_update(context, node_uuid, values): return IMPL.bm_node_associate_and_update(context, node_uuid, values) -def bm_pxe_ip_create(context, address, server_address): - return IMPL.bm_pxe_ip_create(context, address, server_address) - - -def bm_pxe_ip_create_direct(context, bm_pxe_ip): - return IMPL.bm_pxe_ip_create_direct(context, bm_pxe_ip) - - -def bm_pxe_ip_destroy(context, ip_id): - return IMPL.bm_pxe_ip_destroy(context, ip_id) - - -def bm_pxe_ip_destroy_by_address(context, address): - return IMPL.bm_pxe_ip_destroy_by_address(context, address) - - -def bm_pxe_ip_get_all(context): - return IMPL.bm_pxe_ip_get_all(context) - - -def bm_pxe_ip_get(context, ip_id): - return IMPL.bm_pxe_ip_get(context, ip_id) - - -def bm_pxe_ip_get_by_bm_node_id(context, bm_node_id): - return IMPL.bm_pxe_ip_get_by_bm_node_id(context, bm_node_id) - - -def bm_pxe_ip_associate(context, bm_node_id): - return IMPL.bm_pxe_ip_associate(context, bm_node_id) - - -def bm_pxe_ip_disassociate(context, bm_node_id): - return IMPL.bm_pxe_ip_disassociate(context, bm_node_id) - - def bm_interface_get(context, if_id): return IMPL.bm_interface_get(context, if_id) diff --git a/nova/virt/baremetal/db/sqlalchemy/api.py b/nova/virt/baremetal/db/sqlalchemy/api.py index 88d44e3d3..5c9c35184 100644 --- a/nova/virt/baremetal/db/sqlalchemy/api.py +++ b/nova/virt/baremetal/db/sqlalchemy/api.py @@ -236,111 +236,6 @@ def bm_node_destroy(context, bm_node_id): @sqlalchemy_api.require_admin_context -def bm_pxe_ip_get_all(context): - query = model_query(context, models.BareMetalPxeIp, read_deleted="no") - return query.all() - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_create(context, address, server_address): - ref = models.BareMetalPxeIp() - ref.address = address - ref.server_address = server_address - _save(ref) - return ref - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_create_direct(context, bm_pxe_ip): - ref = bm_pxe_ip_create(context, - address=bm_pxe_ip['address'], - server_address=bm_pxe_ip['server_address']) - return ref - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_destroy(context, ip_id): - # Delete physically since it has unique columns - model_query(context, models.BareMetalPxeIp, read_deleted="no").\ - filter_by(id=ip_id).\ - delete() - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_destroy_by_address(context, address): - # Delete physically since it has unique columns - model_query(context, models.BareMetalPxeIp, read_deleted="no").\ - filter_by(address=address).\ - delete() - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_get(context, ip_id): - result = model_query(context, models.BareMetalPxeIp, read_deleted="no").\ - filter_by(id=ip_id).\ - first() - - return result - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_get_by_bm_node_id(context, bm_node_id): - result = model_query(context, models.BareMetalPxeIp, read_deleted="no").\ - filter_by(bm_node_id=bm_node_id).\ - first() - - if not result: - raise exception.NodeNotFound(node_id=bm_node_id) - - return result - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_associate(context, bm_node_id): - session = db_session.get_session() - with session.begin(): - # Check if the node really exists - node_ref = model_query(context, models.BareMetalNode, - read_deleted="no", session=session).\ - filter_by(id=bm_node_id).\ - first() - if not node_ref: - raise exception.NodeNotFound(node_id=bm_node_id) - - # Check if the node already has a pxe_ip - ip_ref = model_query(context, models.BareMetalPxeIp, - read_deleted="no", session=session).\ - filter_by(bm_node_id=bm_node_id).\ - first() - if ip_ref: - return ip_ref.id - - # with_lockmode('update') and filter_by(bm_node_id=None) will lock all - # records. It may cause a performance problem in high-concurrency - # environment. - ip_ref = model_query(context, models.BareMetalPxeIp, - read_deleted="no", session=session).\ - filter_by(bm_node_id=None).\ - with_lockmode('update').\ - first() - - # this exception is not caught in nova/compute/manager - if not ip_ref: - raise exception.NovaException(_("No more PXE IPs available")) - - ip_ref.bm_node_id = bm_node_id - session.add(ip_ref) - return ip_ref.id - - -@sqlalchemy_api.require_admin_context -def bm_pxe_ip_disassociate(context, bm_node_id): - model_query(context, models.BareMetalPxeIp, read_deleted="no").\ - filter_by(bm_node_id=bm_node_id).\ - update({'bm_node_id': None}) - - -@sqlalchemy_api.require_admin_context def bm_interface_get(context, if_id): result = model_query(context, models.BareMetalInterface, read_deleted="no").\ diff --git a/nova/virt/baremetal/db/sqlalchemy/migrate_repo/versions/008_remove_bm_pxe_ips_table.py b/nova/virt/baremetal/db/sqlalchemy/migrate_repo/versions/008_remove_bm_pxe_ips_table.py new file mode 100644 index 000000000..22b45c480 --- /dev/null +++ b/nova/virt/baremetal/db/sqlalchemy/migrate_repo/versions/008_remove_bm_pxe_ips_table.py @@ -0,0 +1,61 @@ +# vim: tabstop=4 shiftwidth=4 softtabstop=4 + +# Copyright 2013 Mirantis Inc. +# 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. + +from sqlalchemy import Boolean +from sqlalchemy import Column +from sqlalchemy import DateTime +from sqlalchemy import Index +from sqlalchemy import Integer +from sqlalchemy import MetaData +from sqlalchemy import String +from sqlalchemy import Table + + +table_name = 'bm_pxe_ips' + + +def upgrade(migrate_engine): + meta = MetaData() + meta.bind = migrate_engine + + table = Table(table_name, meta, autoload=True) + table.drop() + + +def downgrade(migrate_engine): + meta = MetaData() + meta.bind = migrate_engine + + bm_pxe_ips = Table(table_name, meta, + Column('created_at', DateTime), + Column('updated_at', DateTime), + Column('deleted_at', DateTime), + Column('deleted', Boolean), + Column('id', Integer, primary_key=True, nullable=False), + Column('address', String(length=255), unique=True), + Column('bm_node_id', Integer), + Column('server_address', + String(length=255), unique=True), + mysql_engine='InnoDB', + ) + bm_pxe_ips.create() + + Index( + 'idx_bm_pxe_ips_bm_node_id_deleted', + bm_pxe_ips.c.bm_node_id, + bm_pxe_ips.c.deleted + ).create(migrate_engine) diff --git a/nova/virt/baremetal/db/sqlalchemy/models.py b/nova/virt/baremetal/db/sqlalchemy/models.py index dbc9386ec..e21999634 100644 --- a/nova/virt/baremetal/db/sqlalchemy/models.py +++ b/nova/virt/baremetal/db/sqlalchemy/models.py @@ -54,15 +54,6 @@ class BareMetalNode(BASE, models.NovaBase): swap_mb = Column(Integer) -class BareMetalPxeIp(BASE, models.NovaBase): - __tablename__ = 'bm_pxe_ips' - id = Column(Integer, primary_key=True) - deleted = Column(Boolean, default=False) - address = Column(String(255), unique=True) - server_address = Column(String(255), unique=True) - bm_node_id = Column(Integer, ForeignKey('bm_nodes.id'), nullable=True) - - class BareMetalInterface(BASE, models.NovaBase): __tablename__ = 'bm_interfaces' id = Column(Integer, primary_key=True) diff --git a/nova/virt/baremetal/volume_driver.py b/nova/virt/baremetal/volume_driver.py index 6cf6b775f..f634fa76a 100644 --- a/nova/virt/baremetal/volume_driver.py +++ b/nova/virt/baremetal/volume_driver.py @@ -21,6 +21,7 @@ import re from oslo.config import cfg from nova import context as nova_context +from nova.db import api as nova_db_api from nova import exception from nova.openstack.common import importutils from nova.openstack.common import log as logging @@ -219,10 +220,9 @@ class LibvirtVolumeDriver(VolumeDriver): return method(connection_info, *args, **kwargs) def attach_volume(self, connection_info, instance, mountpoint): - node = _get_baremetal_node_by_instance_uuid(instance['uuid']) ctx = nova_context.get_admin_context() - pxe_ip = bmdb.bm_pxe_ip_get_by_bm_node_id(ctx, node['id']) - if not pxe_ip: + fixed_ips = nova_db_api.fixed_ip_get_by_instance(ctx, instance['uuid']) + if not fixed_ips: if not CONF.baremetal.use_unsafe_iscsi: raise exception.NovaException(_( 'No fixed PXE IP is associated to %s') % instance['uuid']) @@ -236,8 +236,9 @@ class LibvirtVolumeDriver(VolumeDriver): tid = _get_next_tid() _create_iscsi_export_tgtadm(device_path, tid, iqn) - if pxe_ip: - _allow_iscsi_tgtadm(tid, pxe_ip['address']) + if fixed_ips: + for ip in fixed_ips: + _allow_iscsi_tgtadm(tid, ip['address']) else: # NOTE(NTTdocomo): Since nova-compute does not know the # instance's initiator ip, it allows any initiators diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py index 6f1da242a..6aca949f8 100755..100644 --- a/nova/virt/libvirt/driver.py +++ b/nova/virt/libvirt/driver.py @@ -291,7 +291,7 @@ MIN_LIBVIRT_LIVESNAPSHOT_VERSION = (1, 0, 0) MIN_QEMU_LIVESNAPSHOT_VERSION = (1, 3, 0) -def libvirt_error_handler(ctxt, err): +def libvirt_error_handler(context, err): # Just ignore instead of default outputting to stderr. pass @@ -1918,7 +1918,7 @@ class LibvirtDriver(driver.ComputeDriver): extra_md['admin_pass'] = admin_pass inst_md = instance_metadata.InstanceMetadata(instance, - content=files, extra_md=extra_md) + content=files or [], extra_md=extra_md) with configdrive.ConfigDriveBuilder(instance_md=inst_md) as cdb: configdrive_path = basepath(fname='disk.config') LOG.info(_('Creating config drive at %(path)s'), @@ -2986,7 +2986,7 @@ class LibvirtDriver(driver.ComputeDriver): 'disk_available_least': _get_disk_available_least()} return dic - def check_instance_shared_storage_local(self, ctxt, instance): + def check_instance_shared_storage_local(self, context, instance): dirpath = libvirt_utils.get_instance_path(instance) if not os.path.exists(dirpath): @@ -2999,13 +2999,13 @@ class LibvirtDriver(driver.ComputeDriver): os.close(fd) return {"filename": tmp_file} - def check_instance_shared_storage_remote(self, ctxt, data): + def check_instance_shared_storage_remote(self, context, data): return os.path.exists(data['filename']) - def check_instance_shared_storage_cleanup(self, ctxt, data): + def check_instance_shared_storage_cleanup(self, context, data): fileutils.delete_if_exists(data["filename"]) - def check_can_live_migrate_destination(self, ctxt, instance_ref, + def check_can_live_migrate_destination(self, context, instance, src_compute_info, dst_compute_info, block_migration=False, disk_over_commit=False): @@ -3014,8 +3014,8 @@ class LibvirtDriver(driver.ComputeDriver): This runs checks on the destination host, and then calls back to the source host to check the results. - :param ctxt: security context - :param instance_ref: nova.db.sqlalchemy.models.Instance + :param context: security context + :param instance: nova.db.sqlalchemy.models.Instance :param block_migration: if true, prepare for block migration :param disk_over_commit: if true, allow disk over commit :returns: a dict containing: @@ -3031,7 +3031,7 @@ class LibvirtDriver(driver.ComputeDriver): (disk_available_gb * 1024) - CONF.reserved_host_disk_mb # Compare CPU - src = instance_ref['host'] + src = instance['host'] source_cpu_info = src_compute_info['cpu_info'] self._compare_cpu(source_cpu_info) @@ -3043,16 +3043,17 @@ class LibvirtDriver(driver.ComputeDriver): "disk_over_commit": disk_over_commit, "disk_available_mb": disk_available_mb} - def check_can_live_migrate_destination_cleanup(self, ctxt, + def check_can_live_migrate_destination_cleanup(self, context, dest_check_data): """Do required cleanup on dest host after check_can_live_migrate calls - :param ctxt: security context + :param context: security context """ filename = dest_check_data["filename"] self._cleanup_shared_storage_test_file(filename) - def check_can_live_migrate_source(self, ctxt, instance, dest_check_data): + def check_can_live_migrate_source(self, context, instance, + dest_check_data): """Check if it is possible to execute live migration. This checks if the live migration can succeed, based on the @@ -3077,7 +3078,7 @@ class LibvirtDriver(driver.ComputeDriver): reason = _("Block migration can not be used " "with shared storage.") raise exception.InvalidLocalStorage(reason=reason, path=source) - self._assert_dest_node_has_enough_disk(ctxt, instance, + self._assert_dest_node_has_enough_disk(context, instance, dest_check_data['disk_available_mb'], dest_check_data['disk_over_commit']) @@ -3096,7 +3097,7 @@ class LibvirtDriver(driver.ComputeDriver): return dest_check_data - def _assert_dest_node_has_enough_disk(self, context, instance_ref, + def _assert_dest_node_has_enough_disk(self, context, instance, available_mb, disk_over_commit): """Checks if destination has enough disk for block migration.""" # Libvirt supports qcow2 disk format,which is usually compressed @@ -3113,7 +3114,7 @@ class LibvirtDriver(driver.ComputeDriver): if available_mb: available = available_mb * (1024 ** 2) - ret = self.get_instance_disk_info(instance_ref['name']) + ret = self.get_instance_disk_info(instance['name']) disk_infos = jsonutils.loads(ret) necessary = 0 @@ -3126,7 +3127,7 @@ class LibvirtDriver(driver.ComputeDriver): # Check that available disk > necessary disk if (available - necessary) < 0: - instance_uuid = instance_ref['uuid'] + instance_uuid = instance['uuid'] reason = _("Unable to migrate %(instance_uuid)s: " "Disk of instance is too large(available" " on destination host:%(available)s " @@ -3203,7 +3204,7 @@ class LibvirtDriver(driver.ComputeDriver): tmp_file = os.path.join(CONF.instances_path, filename) os.remove(tmp_file) - def ensure_filtering_rules_for_instance(self, instance_ref, network_info, + def ensure_filtering_rules_for_instance(self, instance, network_info, time_module=None): """Ensure that an instance's filtering rules are enabled. @@ -3218,21 +3219,21 @@ class LibvirtDriver(driver.ComputeDriver): if not time_module: time_module = greenthread - self.firewall_driver.setup_basic_filtering(instance_ref, network_info) - self.firewall_driver.prepare_instance_filter(instance_ref, + self.firewall_driver.setup_basic_filtering(instance, network_info) + self.firewall_driver.prepare_instance_filter(instance, network_info) # nwfilters may be defined in a separate thread in the case # of libvirt non-blocking mode, so we wait for completion timeout_count = range(CONF.live_migration_retry_count) while timeout_count: - if self.firewall_driver.instance_filter_exists(instance_ref, + if self.firewall_driver.instance_filter_exists(instance, network_info): break timeout_count.pop() if len(timeout_count) == 0: msg = _('The firewall filter for %s does not exist') - raise exception.NovaException(msg % instance_ref["name"]) + raise exception.NovaException(msg % instance["name"]) time_module.sleep(1) def filter_defer_apply_on(self): @@ -3241,13 +3242,13 @@ class LibvirtDriver(driver.ComputeDriver): def filter_defer_apply_off(self): self.firewall_driver.filter_defer_apply_off() - def live_migration(self, ctxt, instance_ref, dest, + def live_migration(self, context, instance, dest, post_method, recover_method, block_migration=False, migrate_data=None): """Spawning live_migration operation for distributing high-load. - :params ctxt: security context - :params instance_ref: + :params context: security context + :params instance: nova.db.sqlalchemy.models.Instance object instance object that is migrated. :params dest: destination host @@ -3263,17 +3264,17 @@ class LibvirtDriver(driver.ComputeDriver): """ - greenthread.spawn(self._live_migration, ctxt, instance_ref, dest, + greenthread.spawn(self._live_migration, context, instance, dest, post_method, recover_method, block_migration, migrate_data) - def _live_migration(self, ctxt, instance_ref, dest, post_method, + def _live_migration(self, context, instance, dest, post_method, recover_method, block_migration=False, migrate_data=None): """Do live migration. - :params ctxt: security context - :params instance_ref: + :params context: security context + :params instance: nova.db.sqlalchemy.models.Instance object instance object that is migrated. :params dest: destination host @@ -3295,7 +3296,7 @@ class LibvirtDriver(driver.ComputeDriver): flagvals = [getattr(libvirt, x.strip()) for x in flaglist] logical_sum = reduce(lambda x, y: x | y, flagvals) - dom = self._lookup_by_name(instance_ref["name"]) + dom = self._lookup_by_name(instance["name"]) dom.migrateToURI(CONF.live_migration_uri % dest, logical_sum, None, @@ -3304,8 +3305,8 @@ class LibvirtDriver(driver.ComputeDriver): except Exception as e: with excutils.save_and_reraise_exception(): LOG.error(_("Live Migration failure: %(e)s") % locals(), - instance=instance_ref) - recover_method(ctxt, instance_ref, dest, block_migration) + instance=instance) + recover_method(context, instance, dest, block_migration) # Waiting for completion of live_migration. timer = loopingcall.FixedIntervalLoopingCall(f=None) @@ -3313,10 +3314,10 @@ class LibvirtDriver(driver.ComputeDriver): def wait_for_live_migration(): """waiting for live migration completion.""" try: - self.get_info(instance_ref)['state'] + self.get_info(instance)['state'] except exception.NotFound: timer.stop() - post_method(ctxt, instance_ref, dest, block_migration, + post_method(context, instance, dest, block_migration, migrate_data) timer.f = wait_for_live_migration @@ -3412,7 +3413,7 @@ class LibvirtDriver(driver.ComputeDriver): instance=instance) greenthread.sleep(1) - def pre_block_migration(self, ctxt, instance, disk_info_json): + def pre_block_migration(self, context, instance, disk_info_json): """Preparation for block migration.""" # NOTE (rmk): When preparing for a block migration, the instance dir # should not exist on the destination hypervisor. @@ -3420,11 +3421,11 @@ class LibvirtDriver(driver.ComputeDriver): if os.path.exists(instance_dir): raise exception.DestinationDiskExists(path=instance_dir) os.mkdir(instance_dir) - self._create_images_and_backing(ctxt, instance, disk_info_json) + self._create_images_and_backing(context, instance, disk_info_json) - def _create_images_and_backing(self, ctxt, instance, disk_info_json): + def _create_images_and_backing(self, context, instance, disk_info_json): """ - :params ctxt: security context + :params context: security context :params instance: nova.db.sqlalchemy.models.Instance object instance object that is migrated. @@ -3453,7 +3454,7 @@ class LibvirtDriver(driver.ComputeDriver): instance_disk, CONF.libvirt_images_type) image.cache(fetch_func=libvirt_utils.fetch_image, - context=ctxt, + context=context, filename=cache_name, image_id=instance['image_ref'], user_id=instance['user_id'], @@ -3462,17 +3463,17 @@ class LibvirtDriver(driver.ComputeDriver): # if image has kernel and ramdisk, just download # following normal way. - self._fetch_instance_kernel_ramdisk(ctxt, instance) + self._fetch_instance_kernel_ramdisk(context, instance) - def post_live_migration_at_destination(self, ctxt, - instance_ref, + def post_live_migration_at_destination(self, context, + instance, network_info, block_migration, block_device_info=None): """Post operation of live migration at destination host. - :param ctxt: security context - :param instance_ref: + :param context: security context + :param instance: nova.db.sqlalchemy.models.Instance object instance object that is migrated. :param network_info: instance network information @@ -3480,23 +3481,23 @@ class LibvirtDriver(driver.ComputeDriver): """ # Define migrated instance, otherwise, suspend/destroy does not work. dom_list = self._conn.listDefinedDomains() - if instance_ref["name"] not in dom_list: + if instance["name"] not in dom_list: # In case of block migration, destination does not have # libvirt.xml disk_info = blockinfo.get_disk_info(CONF.libvirt_type, - instance_ref) - self.to_xml(instance_ref, network_info, disk_info, + instance) + self.to_xml(instance, network_info, disk_info, block_device_info, write_to_disk=True) # libvirt.xml should be made by to_xml(), but libvirt # does not accept to_xml() result, since uuid is not # included in to_xml() result. - dom = self._lookup_by_name(instance_ref["name"]) + dom = self._lookup_by_name(instance["name"]) self._conn.defineXML(dom.XMLDesc(0)) def get_instance_disk_info(self, instance_name, xml=None): """Preparation block migration. - :params instance_ref: + :params instance: nova.db.sqlalchemy.models.Instance object instance object that is migrated. :return: @@ -3591,9 +3592,9 @@ class LibvirtDriver(driver.ComputeDriver): greenthread.sleep(0) return disk_over_committed_size - def unfilter_instance(self, instance_ref, network_info): + def unfilter_instance(self, instance, network_info): """See comments of same method in firewall_driver.""" - self.firewall_driver.unfilter_instance(instance_ref, + self.firewall_driver.unfilter_instance(instance, network_info=network_info) def get_host_stats(self, refresh=False): diff --git a/nova/virt/xenapi/agent.py b/nova/virt/xenapi/agent.py index c9e011856..05a0fae41 100644 --- a/nova/virt/xenapi/agent.py +++ b/nova/virt/xenapi/agent.py @@ -27,6 +27,7 @@ from nova.api.metadata import password from nova.compute import api as compute_api from nova import context from nova import crypto +from nova import exception from nova.openstack.common import jsonutils from nova.openstack.common import log as logging from nova.openstack.common import strutils @@ -77,7 +78,7 @@ CONF.register_opts(xenapi_agent_opts) def _call_agent(session, instance, vm_ref, method, addl_args=None, - timeout=None): + timeout=None, success_code='0'): """Abstracts out the interaction with the agent xenapi plugin.""" if addl_args is None: addl_args = {} @@ -101,43 +102,39 @@ def _call_agent(session, instance, vm_ref, method, addl_args=None, LOG.error(_('TIMEOUT: The call to %(method)s timed out. ' 'args=%(args)r'), {'method': method, 'args': args}, instance=instance) - return {'returncode': 'timeout', 'message': err_msg} + raise exception.AgentTimeout(method=method) elif 'NOT IMPLEMENTED:' in err_msg: - LOG.error(_('NOT IMPLEMENTED: The call to %(method)s is not' - ' supported by the agent. args=%(args)r'), + LOG.error(_('NOT IMPLEMENTED: The call to %(method)s is not ' + 'supported by the agent. args=%(args)r'), {'method': method, 'args': args}, instance=instance) - return {'returncode': 'notimplemented', 'message': err_msg} + raise exception.AgentNotImplemented(method=method) else: LOG.error(_('The call to %(method)s returned an error: %(e)s. ' 'args=%(args)r'), {'method': method, 'args': args, 'e': e}, instance=instance) - return {'returncode': 'error', 'message': err_msg} - return None + raise exception.AgentError(method=method) - if isinstance(ret, dict): - return ret - try: - return jsonutils.loads(ret) - except TypeError: - LOG.error(_('The agent call to %(method)s returned an invalid ' - 'response: %(ret)r. args=%(args)r'), + if not isinstance(ret, dict): + try: + ret = jsonutils.loads(ret) + except TypeError: + LOG.error(_('The agent call to %(method)s returned an invalid ' + 'response: %(ret)r. args=%(args)r'), + {'method': method, 'ret': ret, 'args': args}, + instance=instance) + raise exception.AgentError(method=method) + + if ret['returncode'] != success_code: + LOG.error(_('The agent call to %(method)s returned an ' + 'an error: %(ret)r. args=%(args)r'), {'method': method, 'ret': ret, 'args': args}, instance=instance) - return {'returncode': 'error', - 'message': 'unable to deserialize response'} - - -def _get_agent_version(session, instance, vm_ref): - resp = _call_agent(session, instance, vm_ref, 'version') - if resp['returncode'] != '0': - LOG.error(_('Failed to query agent version: %r'), - resp, instance=instance) - return None + raise exception.AgentError(method=method) # Some old versions of the Windows agent have a trailing \\r\\n # (ie CRLF escaped) for some reason. Strip that off. - return resp['message'].replace('\\r\\n', '') + return ret['message'].replace('\\r\\n', '') class XenAPIBasedAgent(object): @@ -147,6 +144,11 @@ class XenAPIBasedAgent(object): self.instance = instance self.vm_ref = vm_ref + def _call_agent(self, method, addl_args=None, timeout=None, + success_code='0'): + return _call_agent(self.session, self.instance, self.vm_ref, + method, addl_args, timeout, success_code) + def get_agent_version(self): """Get the version of the agent running on the VM instance.""" @@ -159,31 +161,47 @@ class XenAPIBasedAgent(object): # normal as well as watch for domid changes expiration = time.time() + CONF.agent_version_timeout - while time.time() < expiration: - ret = _get_agent_version(self.session, self.instance, self.vm_ref) - if ret: - return ret - - LOG.info(_('Reached maximum time attempting to query agent version'), - instance=self.instance) - - return None + while True: + try: + return self._call_agent('version') + except exception.AgentTimeout: + if time.time() > expiration: + raise def agent_update(self, agent_build): """Update agent on the VM instance.""" - LOG.info(_('Updating agent to %s'), agent_build['version'], - instance=self.instance) + LOG.debug(_('Updating agent to %s'), agent_build['version'], + instance=self.instance) # Send the encrypted password args = {'url': agent_build['url'], 'md5sum': agent_build['md5hash']} - resp = _call_agent( - self.session, self.instance, self.vm_ref, 'agentupdate', args) - if resp['returncode'] != '0': - LOG.error(_('Failed to update agent: %r'), resp, - instance=self.instance) - return None - return resp['message'] + try: + self._call_agent('agentupdate', args) + except exception.AgentError as exc: + # Silently fail for agent upgrades + LOG.warning(_("Unable to update the agent due " + "to: %(exc)s") % dict(exc=exc), + instance=self.instance) + + def _exchange_key_with_agent(self): + dh = SimpleDH() + args = {'pub': str(dh.get_public())} + resp = self._call_agent('key_init', args, success_code='D0') + agent_pub = int(resp) + dh.compute_shared(agent_pub) + return dh + + def _save_instance_password_if_sshkey_present(self, new_pass): + sshkey = self.instance.get('key_data') + if sshkey: + ctxt = context.get_admin_context() + enc = crypto.ssh_encrypt_text(sshkey, new_pass) + sys_meta = utils.metadata_to_dict(self.instance['system_metadata']) + sys_meta.update(password.convert_password(ctxt, + base64.b64encode(enc))) + self.virtapi.instance_update(ctxt, self.instance['uuid'], + {'system_metadata': sys_meta}) def set_admin_password(self, new_pass): """Set the root/admin password on the VM instance. @@ -196,59 +214,24 @@ class XenAPIBasedAgent(object): """ LOG.debug(_('Setting admin password'), instance=self.instance) - dh = SimpleDH() - - # Exchange keys - args = {'pub': str(dh.get_public())} - resp = _call_agent( - self.session, self.instance, self.vm_ref, 'key_init', args) - - # Successful return code from key_init is 'D0' - if resp['returncode'] != 'D0': - msg = _('Failed to exchange keys: %r') % resp - LOG.error(msg, instance=self.instance) - raise NotImplementedError(msg) - - # Some old versions of the Windows agent have a trailing \\r\\n - # (ie CRLF escaped) for some reason. Strip that off. - agent_pub = int(resp['message'].replace('\\r\\n', '')) - dh.compute_shared(agent_pub) - + dh = self._exchange_key_with_agent() # Some old versions of Linux and Windows agent expect trailing \n # on password to work correctly. enc_pass = dh.encrypt(new_pass + '\n') - # Send the encrypted password args = {'enc_pass': enc_pass} - resp = _call_agent( - self.session, self.instance, self.vm_ref, 'password', args) - - # Successful return code from password is '0' - if resp['returncode'] != '0': - msg = _('Failed to exchange keys: %r') % resp - LOG.error(msg, instance=self.instance) - raise NotImplementedError(msg) - - sshkey = self.instance.get('key_data') - if sshkey: - ctxt = context.get_admin_context() - enc = crypto.ssh_encrypt_text(sshkey, new_pass) - sys_meta = utils.metadata_to_dict(self.instance['system_metadata']) - sys_meta.update(password.convert_password(ctxt, - base64.b64encode(enc))) - self.virtapi.instance_update(ctxt, self.instance['uuid'], - {'system_metadata': sys_meta}) - - return resp['message'] + self._call_agent('password', args) + self._save_instance_password_if_sshkey_present(new_pass) def inject_ssh_key(self): sshkey = self.instance.get('key_data') if not sshkey: return if self.instance['os_type'] == 'windows': - LOG.warning(_("Skipping setting of ssh key for Windows."), - instance=self.instance) + LOG.debug(_("Skipping setting of ssh key for Windows."), + instance=self.instance) return + sshkey = str(sshkey) keyfile = '/root/.ssh/authorized_keys' key_data = ''.join([ @@ -268,30 +251,13 @@ class XenAPIBasedAgent(object): b64_contents = base64.b64encode(contents) args = {'b64_path': b64_path, 'b64_contents': b64_contents} - - # If the agent doesn't support file injection, a NotImplementedError - # will be raised with the appropriate message. - resp = _call_agent( - self.session, self.instance, self.vm_ref, 'inject_file', args) - if resp['returncode'] != '0': - LOG.error(_('Failed to inject file: %r'), resp, - instance=self.instance) - return None - - return resp['message'] + return self._call_agent('inject_file', args) def resetnetwork(self): LOG.debug(_('Resetting network'), instance=self.instance) - resp = _call_agent( - self.session, self.instance, self.vm_ref, 'resetnetwork', - timeout=CONF.agent_resetnetwork_timeout) - if resp['returncode'] != '0': - LOG.error(_('Failed to reset network: %r'), resp, - instance=self.instance) - return None - - return resp['message'] + return self._call_agent('resetnetwork', + timeout=CONF.agent_resetnetwork_timeout) def find_guest_agent(base_dir): diff --git a/nova/virt/xenapi/fake.py b/nova/virt/xenapi/fake.py index 2dd9765d1..f4eac3887 100644 --- a/nova/virt/xenapi/fake.py +++ b/nova/virt/xenapi/fake.py @@ -565,7 +565,7 @@ class SessionBase(object): return 12 * 1024 * 1024 * 1024 def _plugin_agent_version(self, method, args): - return as_json(returncode='0', message='1.0') + return as_json(returncode='0', message='1.0\\r\\n') def _plugin_agent_key_init(self, method, args): return as_json(returncode='D0', message='1') @@ -579,6 +579,13 @@ class SessionBase(object): def _plugin_agent_resetnetwork(self, method, args): return as_json(returncode='0', message='success') + def _plugin_agent_agentupdate(self, method, args): + url = args["url"] + md5 = args["md5sum"] + message = "success with %(url)s and hash:%(md5)s" % dict(url=url, + md5=md5) + return as_json(returncode='0', message=message) + def _plugin_noop(self, method, args): return '' diff --git a/requirements.txt b/requirements.txt index c10862581..298c6b2c9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ d2to1>=0.2.10,<0.3 -pbr>=0.5,<0.6 +pbr>=0.5.16,<0.6 SQLAlchemy>=0.7.8,<0.7.99 Cheetah>=2.4.4 amqplib>=0.6.1 @@ -30,4 +30,4 @@ python-keystoneclient>=0.2.0 six stevedore>=0.9 websockify<0.4 -oslo.config>=1.1.0 +http://tarballs.openstack.org/oslo.config/oslo.config-1.2.0a2.tar.gz#egg=oslo.config-1.2.0a2 |