added more I18N
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user