added more I18N

This commit is contained in:
Christian Berendt
2011-02-17 16:46:55 +01:00
parent 4f8703260b
commit 94e8e5dc2c

View File

@@ -501,9 +501,9 @@ class NetworkCommands(object):
def list(self): def list(self):
"""List all created networks""" """List all created networks"""
print "%-18s\t%-15s\t%-15s\t%-15s" % ('CIDR', print "%-18s\t%-15s\t%-15s\t%-15s" % (_('network'),
'netmask', _('netmask'),
'dhcp_start', _('start address'),
'DNS') 'DNS')
for network in db.network_get_all(context.get_admin_context()): for network in db.network_get_all(context.get_admin_context()):
print "%-18s\t%-15s\t%-15s\t%-15s" % (network.cidr, print "%-18s\t%-15s\t%-15s\t%-15s" % (network.cidr,