[lxc-devel] [lxd/master] Add infiniband char device info to resources API

stgraber on Github lxc-bot at linuxcontainers.org
Fri Aug 9 19:54:05 UTC 2019


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 301 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20190809/b7b372bf/attachment-0001.bin>
-------------- next part --------------
From f59cf09ca9b1fd5a2ca77ec836121f439f9a7e6f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Fri, 9 Aug 2019 15:47:20 -0400
Subject: [PATCH 1/5] api: resources_infiniband extension
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 doc/api-extensions.md | 3 +++
 shared/version/api.go | 1 +
 2 files changed, 4 insertions(+)

diff --git a/doc/api-extensions.md b/doc/api-extensions.md
index ab23f72efb..06249be844 100644
--- a/doc/api-extensions.md
+++ b/doc/api-extensions.md
@@ -815,3 +815,6 @@ same storage volume while keeping the filesystem writable from all of
 them.
 
 This makes use of shiftfs as an overlay filesystem.
+
+## resources\_infiniband
+Export infiniband character device information (issm, umad, uverb) as part of the resources API.
diff --git a/shared/version/api.go b/shared/version/api.go
index e088dff56b..0e3f9c892e 100644
--- a/shared/version/api.go
+++ b/shared/version/api.go
@@ -162,6 +162,7 @@ var APIExtensions = []string{
 	"container_syscall_intercept",
 	"container_disk_shift",
 	"storage_shifted",
+	"resources_infiniband",
 }
 
 // APIExtensionsCount returns the number of available API extensions.

From e8fda17e23964a0b24e2ebce0349c48c564c237f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Fri, 9 Aug 2019 15:47:39 -0400
Subject: [PATCH 2/5] shared/api: Add Infiniband fields
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 shared/api/resource.go | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/shared/api/resource.go b/shared/api/resource.go
index a5a83f6472..eea1b86f6e 100644
--- a/shared/api/resource.go
+++ b/shared/api/resource.go
@@ -175,6 +175,22 @@ type ResourcesNetworkCardPort struct {
 	LinkDetected    bool   `json:"link_detected" yaml:"link_detected"`
 	LinkSpeed       uint64 `json:"link_speed,omitempty" yaml:"link_speed,omitempty"`
 	LinkDuplex      string `json:"link_duplex,omitempty" yaml:"link_duplex,omitempty"`
+
+	// API extension: resources_infiniband
+	Infiniband *ResourcesNetworkCardPortInfiniband `json:"infiniband,omitempty" yaml:"infiniband,omitempty"`
+}
+
+// ResourcesNetworkCardPortInfiniband represents the Linux Infiniband configuration for the port
+// API extension: resources_infiniband
+type ResourcesNetworkCardPortInfiniband struct {
+	IsSMName   string `json:"issm_name,omitempty" yaml:"issm_name,omitempty"`
+	IsSMDevice string `json:"issm_device,omitempty" yaml:"issm_device,omitempty"`
+
+	MADName   string `json:"mad_name,omitempty" yaml:"mad_name,omitempty"`
+	MADDevice string `json:"mad_device,omitempty" yaml:"mad_device,omitempty"`
+
+	VerbName   string `json:"verb_name,omitempty" yaml:"verb_name,omitempty"`
+	VerbDevice string `json:"verb_device,omitempty" yaml:"verb_device,omitempty"`
 }
 
 // ResourcesNetworkCardSRIOV represents the SRIOV configuration of the network card

From 8650db2c28a687c1620c68902bce74b297a52f81 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Fri, 9 Aug 2019 15:48:13 -0400
Subject: [PATCH 3/5] lxd/resources: Add infiniband char device info
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 lxd/resources/network.go | 74 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 73 insertions(+), 1 deletion(-)

diff --git a/lxd/resources/network.go b/lxd/resources/network.go
index c7125e895f..09d40f7e5c 100644
--- a/lxd/resources/network.go
+++ b/lxd/resources/network.go
@@ -163,13 +163,85 @@ func networkAddDeviceInfo(devicePath string, pciDB *pcidb.PCIDB, uname unix.Utsn
 				info.Port = port
 			}
 
+			// Add infiniband specific information
+			if info.Protocol == "infiniband" && sysfsExists(filepath.Join(devicePath, "infiniband")) {
+				infiniband := &api.ResourcesNetworkCardPortInfiniband{}
+
+				madPath := filepath.Join(devicePath, "infiniband_mad")
+				if sysfsExists(madPath) {
+					ibPort := info.Port + 1
+
+					entries, err := ioutil.ReadDir(madPath)
+					if err != nil {
+						return errors.Wrapf(err, "Failed to list \"%s\"", madPath)
+					}
+
+					for _, entry := range entries {
+						entryName := entry.Name()
+						currentPort, err := readUint(filepath.Join(madPath, entryName, "port"))
+						if err != nil {
+							return errors.Wrapf(err, "Failed to read \"%s\"", filepath.Join(madPath, entryName, "port"))
+						}
+
+						if currentPort != ibPort {
+							continue
+						}
+
+						if !sysfsExists(filepath.Join(madPath, entryName, "dev")) {
+							continue
+						}
+
+						dev, err := ioutil.ReadFile(filepath.Join(madPath, entryName, "dev"))
+						if err != nil {
+							return errors.Wrapf(err, "Failed to read \"%s\"", filepath.Join(madPath, entryName, "dev"))
+						}
+
+						if strings.HasPrefix(entryName, "issm") {
+							infiniband.IsSMName = entryName
+							infiniband.IsSMDevice = strings.TrimSpace(string(dev))
+						}
+
+						if strings.HasPrefix(entryName, "umad") {
+							infiniband.MADName = entryName
+							infiniband.MADDevice = strings.TrimSpace(string(dev))
+						}
+					}
+				}
+
+				verbsPath := filepath.Join(devicePath, "infiniband_verbs")
+				if sysfsExists(verbsPath) {
+					entries, err := ioutil.ReadDir(verbsPath)
+					if err != nil {
+						return errors.Wrapf(err, "Failed to list \"%s\"", verbsPath)
+					}
+
+					if len(entries) == 1 {
+						verbName := entries[0].Name()
+						infiniband.VerbName = verbName
+
+						if !sysfsExists(filepath.Join(verbsPath, verbName, "dev")) {
+							continue
+						}
+
+						dev, err := ioutil.ReadFile(filepath.Join(verbsPath, verbName, "dev"))
+						if err != nil {
+							return errors.Wrapf(err, "Failed to read \"%s\"", filepath.Join(verbsPath, verbName, "dev"))
+						}
+
+						infiniband.VerbDevice = strings.TrimSpace(string(dev))
+					}
+				}
+
+				info.Infiniband = infiniband
+			}
+
+			// Attempt to add ethtool details (ignore failures)
 			if sysfsExists(filepath.Join(devicePath, "physfn")) {
 				// Getting physical port info for VFs makes no sense
 				card.Ports = append(card.Ports, *info)
 				continue
 			}
 
-			// Attempt to add ethtool details (ignore failures)
 			ethtoolAddInfo(info)
 
 			card.Ports = append(card.Ports, *info)

From 959a4a6f6acf92d1552d309ed214280f2070b467 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Fri, 9 Aug 2019 15:51:07 -0400
Subject: [PATCH 4/5] lxc/info: Add support for infiniband info
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 lxc/info.go | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/lxc/info.go b/lxc/info.go
index 489dd24c68..dce77937cf 100644
--- a/lxc/info.go
+++ b/lxc/info.go
@@ -195,6 +195,22 @@ func (c *cmdInfo) renderNIC(nic api.ResourcesNetworkCard, prefix string, initial
 			if port.LinkSpeed > 0 {
 				fmt.Printf(prefix+"    "+i18n.G("Link speed: %dMbit/s (%s duplex)")+"\n", port.LinkSpeed, port.LinkDuplex)
 			}
+
+			if port.Infiniband != nil {
+				fmt.Printf(prefix + "    " + i18n.G("Infiniband:") + "\n")
+
+				if port.Infiniband.IsSMName != "" {
+					fmt.Printf(prefix+"      "+i18n.G("IsSM: %s (%s)")+"\n", port.Infiniband.IsSMName, port.Infiniband.IsSMDevice)
+				}
+
+				if port.Infiniband.MADName != "" {
+					fmt.Printf(prefix+"      "+i18n.G("MAD: %s (%s)")+"\n", port.Infiniband.MADName, port.Infiniband.MADDevice)
+				}
+
+				if port.Infiniband.VerbName != "" {
+					fmt.Printf(prefix+"      "+i18n.G("Verb: %s (%s)")+"\n", port.Infiniband.VerbName, port.Infiniband.VerbDevice)
+				}
+			}
 		}
 	}
 

From 1bbfdeaaa2813d2bb49cee16776d30f8f6b07ddf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Fri, 9 Aug 2019 15:51:26 -0400
Subject: [PATCH 5/5] i18n: Update translation templates
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 po/bg.po      | 897 +++++++++++++++++++++++++------------------------
 po/de.po      | 909 ++++++++++++++++++++++++++------------------------
 po/el.po      | 897 +++++++++++++++++++++++++------------------------
 po/es.po      | 897 +++++++++++++++++++++++++------------------------
 po/fa.po      | 897 +++++++++++++++++++++++++------------------------
 po/fi.po      | 897 +++++++++++++++++++++++++------------------------
 po/fr.po      | 897 +++++++++++++++++++++++++------------------------
 po/hi.po      | 897 +++++++++++++++++++++++++------------------------
 po/id.po      | 897 +++++++++++++++++++++++++------------------------
 po/it.po      | 897 +++++++++++++++++++++++++------------------------
 po/ja.po      | 897 +++++++++++++++++++++++++------------------------
 po/ko.po      | 897 +++++++++++++++++++++++++------------------------
 po/lxd.pot    | 787 ++++++++++++++++++++++---------------------
 po/nb_NO.po   | 897 +++++++++++++++++++++++++------------------------
 po/nl.po      | 897 +++++++++++++++++++++++++------------------------
 po/pa.po      | 897 +++++++++++++++++++++++++------------------------
 po/pl.po      | 897 +++++++++++++++++++++++++------------------------
 po/pt_BR.po   | 897 +++++++++++++++++++++++++------------------------
 po/ru.po      | 897 +++++++++++++++++++++++++------------------------
 po/sr.po      | 897 +++++++++++++++++++++++++------------------------
 po/sv.po      | 897 +++++++++++++++++++++++++------------------------
 po/tr.po      | 897 +++++++++++++++++++++++++------------------------
 po/uk.po      | 897 +++++++++++++++++++++++++------------------------
 po/zh_Hans.po | 897 +++++++++++++++++++++++++------------------------
 24 files changed, 10949 insertions(+), 10481 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index cb1ad0d4e3..be702301f3 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/de.po b/po/de.po
index c2059014ec..782902eeb4 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2018-11-30 03:10+0000\n"
 "Last-Translator: ssantos <ssantos at web.de>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -214,7 +214,7 @@ msgstr ""
 "###\n"
 "### Der Name wird zwar angezeigt, lässt sich jedoch nicht ändern.\n"
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the profile.\n"
@@ -253,7 +253,7 @@ msgstr ""
 "###\n"
 "### Der Name wird zwar angezeigt, lässt sich jedoch nicht ändern.\n"
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -288,7 +288,7 @@ msgstr ""
 "###\n"
 "### Der Name wird zwar angezeigt, lässt sich jedoch nicht ändern.\n"
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -313,16 +313,16 @@ msgstr "%v (zwei weitere Male unterbrechen, um zu erzwingen)"
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr "(kein Wert)"
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -345,11 +345,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -361,15 +361,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr "ARCHITEKTUR"
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr "Akzeptiere Zertifikat"
 
@@ -381,20 +381,20 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Aliasse:\n"
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 #, fuzzy
 msgid "Add profiles to containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -404,22 +404,22 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Address: %s"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Administrator Passwort für %s: "
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, fuzzy, c-format
 msgid "Alias %s already exists"
 msgstr "entfernte Instanz %s existiert bereits"
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, fuzzy, c-format
 msgid "Alias %s doesn't exist"
 msgstr "entfernte Instanz %s existiert nicht"
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -428,7 +428,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Aliasse:\n"
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, fuzzy, c-format
 msgid "Architecture: %s"
 msgstr "Architektur: %s\n"
@@ -438,7 +438,7 @@ msgstr "Architektur: %s\n"
 msgid "Architecture: %v"
 msgstr "Architektur: %s\n"
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -475,7 +475,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -490,7 +490,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "automatisches Update: %s"
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -529,47 +529,47 @@ msgstr ""
 msgid "Brand: %v"
 msgstr "Erstellt: %s"
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes empfangen"
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Bytes gesendet"
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr " Prozessorauslastung:"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 #, fuzzy
 msgid "CPU usage:"
 msgstr " Prozessorauslastung:"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 #, fuzzy
 msgid "CREATED"
 msgstr "ERSTELLT AM"
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr "ERSTELLT AM"
 
@@ -587,7 +587,7 @@ msgstr ""
 "Optionen:\n"
 "\n"
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 #, fuzzy
 msgid "Caches:"
 msgstr ""
@@ -613,11 +613,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -625,7 +625,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -638,11 +638,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -656,12 +656,12 @@ msgstr ""
 "Optionen:\n"
 "\n"
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, fuzzy, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Fingerabdruck des Zertifikats: % x\n"
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr "Gespeichertes Nutzerzertifikat auf dem Server: "
 
@@ -673,18 +673,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -709,7 +709,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 #, fuzzy
 msgid "Config key/value to apply to the new project"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -720,7 +720,7 @@ msgid "Config key/value to apply to the target container"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, fuzzy, c-format
 msgid "Config parsing error: %s"
@@ -778,7 +778,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -811,21 +811,21 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, fuzzy, c-format
 msgid "Core %d"
 msgstr "Fehler: %v\n"
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 #, fuzzy
 msgid "Cores:"
 msgstr "Fehler: %v\n"
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr "Kann Verzeichnis für Zertifikate auf dem Server nicht erstellen"
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -860,7 +860,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 #, fuzzy
 msgid "Create new container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -874,12 +874,12 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 #, fuzzy
 msgid "Create profiles"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 #, fuzzy
 msgid "Create projects"
 msgstr "Fehlerhafte Profil URL %s"
@@ -894,7 +894,7 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Create the container with no profiles applied"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr "Erstellt: %s"
@@ -909,21 +909,21 @@ msgstr "Erstelle %s"
 msgid "Creating the container"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr "BESCHREIBUNG"
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -935,11 +935,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 #, fuzzy
 msgid "Delete container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -953,7 +953,7 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -965,11 +965,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 #, fuzzy
 msgid "Delete projects"
 msgstr "Fehlerhafte Profil URL %s"
@@ -984,54 +984,54 @@ msgid "Delete storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -1071,7 +1071,7 @@ msgstr "Gerät %s wurde von %s entfernt\n"
 msgid "Device already exists: %s"
 msgstr "entfernte Instanz %s existiert bereits"
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, fuzzy, c-format
 msgid "Device: %s"
 msgstr ""
@@ -1098,27 +1098,27 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr " Prozessorauslastung:"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 #, fuzzy
 msgid "Disk usage:"
 msgstr " Prozessorauslastung:"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr " Prozessorauslastung:"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr " Prozessorauslastung:"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1131,15 +1131,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr "ABLAUFDATUM"
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 #, fuzzy
 msgid "Edit container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -1165,11 +1165,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1181,16 +1181,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1213,7 +1213,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr "Flüchtiger Container"
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, fuzzy, c-format
 msgid "Error updating template file: %s"
 msgstr "Fehler beim hinzufügen des Alias %s\n"
@@ -1285,12 +1285,12 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr "FINGERABDRUCK"
 
@@ -1323,7 +1323,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 #, fuzzy
 msgid "Filtering isn't supported yet"
 msgstr ""
@@ -1339,7 +1339,7 @@ msgstr "Fingerabdruck: %s\n"
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1356,7 +1356,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1380,34 +1380,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1415,7 +1415,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 #, fuzzy
 msgid "Generating a client certificate. This may take a minute..."
 msgstr "Generiere Nutzerzertifikat. Dies kann wenige Minuten dauern...\n"
@@ -1436,11 +1436,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 #, fuzzy
 msgid "Get values for project configuration keys"
 msgstr "Profil %s erstellt\n"
@@ -1461,15 +1461,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1478,28 +1478,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1518,7 +1518,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1530,7 +1530,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1544,7 +1544,7 @@ msgstr "Abbild mit Fingerabdruck %s importiert\n"
 msgid "Image imported with fingerprint: %s"
 msgstr "Abbild mit Fingerabdruck %s importiert\n"
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1573,6 +1573,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr "Herunterfahren des Containers erzwingen."
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1581,42 +1585,42 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 #, fuzzy
 msgid "Invalid certificate"
 msgstr "Akzeptiere Zertifikat"
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1632,7 +1636,7 @@ msgstr "ungültiges Argument %s"
 msgid "Invalid path %s"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, fuzzy, c-format
 msgid "Invalid protocol: %s"
 msgstr "Ungültiges Ziel %s"
@@ -1647,20 +1651,29 @@ msgstr "Ungültige Quelle %s"
 msgid "Invalid target %s"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, fuzzy, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+"Benutzung: %s\n"
+"\n"
+"Optionen:\n"
+"\n"
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1668,7 +1681,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1691,16 +1704,16 @@ msgstr "Architektur: %s\n"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 #, fuzzy
 msgid "List aliases"
 msgstr "Aliasse:\n"
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1712,7 +1725,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1721,7 +1734,7 @@ msgstr ""
 msgid "List container devices"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 #, fuzzy
 msgid "List container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -1811,11 +1824,11 @@ msgstr ""
 "* \"security.privileged=1\" listet alle privilegierten Container\n"
 "* \"s.privileged=1\" ebenfalls\n"
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1852,11 +1865,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1865,28 +1878,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1895,11 +1908,20 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, fuzzy, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+"Benutzung: %s\n"
+"\n"
+"Optionen:\n"
+"\n"
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1921,11 +1943,11 @@ msgstr "Veröffentliche Abbild"
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 #, fuzzy
 msgid "Manage command aliases"
 msgstr "Unbekannter Befehl %s für Abbild"
@@ -1939,7 +1961,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 #, fuzzy
 msgid "Manage container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -1953,7 +1975,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 #, fuzzy
 msgid "Manage image aliases"
 msgstr "Veröffentliche Abbild"
@@ -1982,12 +2004,12 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 #, fuzzy
 msgid "Manage profiles"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 #, fuzzy
 msgid "Manage projects"
 msgstr "Fehlerhafte Profil URL %s"
@@ -2010,42 +2032,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, fuzzy, c-format
 msgid "Member %s removed"
 msgstr "Gerät %s wurde von %s entfernt\n"
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, fuzzy, c-format
 msgid "Member %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -2062,14 +2084,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 #, fuzzy
 msgid "Missing container name"
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 #, fuzzy
 msgid "Missing container.name name"
 msgstr "der Name des Ursprung Containers muss angegeben werden"
@@ -2083,36 +2105,36 @@ msgstr "Fehlende Zusammenfassung."
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 #, fuzzy
 msgid "Missing pool name"
 msgstr "Profilname kann nicht geändert werden"
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 #, fuzzy
 msgid "Missing project name"
 msgstr "Profilname kann nicht geändert werden"
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -2125,7 +2147,7 @@ msgstr "Kein Zertifikat für diese Verbindung"
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -2161,7 +2183,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 #, fuzzy
 msgid "Move storage volumes between pools"
 msgstr "Kein Zertifikat für diese Verbindung"
@@ -2185,31 +2207,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2222,12 +2244,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2247,7 +2269,7 @@ msgstr "Profil %s gelöscht\n"
 msgid "Network %s pending on member %s"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, fuzzy, c-format
 msgid "Network %s renamed to %s"
 msgstr "Profil %s erstellt\n"
@@ -2256,7 +2278,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr "Profil %s erstellt\n"
@@ -2297,7 +2319,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr "kein Wert in %q gefunden\n"
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2306,11 +2328,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2318,11 +2340,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, fuzzy, c-format
 msgid "Operation %s deleted"
 msgstr "Profil %s gelöscht\n"
@@ -2340,39 +2362,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2390,7 +2412,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2404,13 +2426,13 @@ msgstr "Erstellt: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2430,7 +2452,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, fuzzy, c-format
 msgid "Processes: %d"
 msgstr "Profil %s erstellt\n"
@@ -2445,32 +2467,32 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, fuzzy, c-format
 msgid "Profile %s added to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, fuzzy, c-format
 msgid "Profile %s created"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, fuzzy, c-format
 msgid "Profile %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, fuzzy, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, fuzzy, c-format
 msgid "Profile %s removed from %s"
 msgstr "Gerät %s wurde von %s entfernt\n"
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, fuzzy, c-format
 msgid "Profile %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
@@ -2485,27 +2507,27 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Profile to apply to the target container"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, fuzzy, c-format
 msgid "Profiles %s applied to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, fuzzy, c-format
 msgid "Profiles: %s"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, fuzzy, c-format
 msgid "Project %s created"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, fuzzy, c-format
 msgid "Project %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, fuzzy, c-format
 msgid "Project %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
@@ -2515,7 +2537,7 @@ msgstr "Profil %s wurde auf %s angewandt\n"
 msgid "Properties:"
 msgstr "Eigenschaften:\n"
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2554,7 +2576,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2563,7 +2585,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2572,33 +2594,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, fuzzy, c-format
 msgid "Remote %s already exists"
 msgstr "entfernte Instanz %s existiert bereits"
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, fuzzy, c-format
 msgid "Remote %s doesn't exist"
 msgstr "entfernte Instanz %s existiert nicht"
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, fuzzy, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "entfernte Instanz %s existiert als <%s>"
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr "Entferntes Administrator Passwort"
 
@@ -2607,12 +2629,12 @@ msgstr "Entferntes Administrator Passwort"
 msgid "Remote operation canceled by user"
 msgstr "Server Zertifikat vom Benutzer nicht akzeptiert"
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2622,11 +2644,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 #, fuzzy
 msgid "Remove aliases"
 msgstr "Entferntes Administrator Passwort"
@@ -2636,25 +2658,25 @@ msgstr "Entferntes Administrator Passwort"
 msgid "Remove container devices"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 #, fuzzy
 msgid "Remove profiles from containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2663,35 +2685,35 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 #, fuzzy
 msgid "Rename profiles"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 #, fuzzy
 msgid "Rename projects"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 #, fuzzy
 msgid "Rename storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 #, fuzzy
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2705,7 +2727,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2733,7 +2755,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 #, fuzzy
 msgid "Restore storage volume snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
@@ -2756,31 +2778,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2788,21 +2810,21 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr "Server Zertifikat vom Benutzer nicht akzeptiert"
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 #, fuzzy
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 "Der Server vertraut uns nicht nachdem er unser Zertifikat hinzugefügt hat"
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2839,11 +2861,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2852,11 +2874,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2865,12 +2887,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2879,12 +2901,12 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 #, fuzzy
 msgid "Set storage pool configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2893,12 +2915,12 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 #, fuzzy
 msgid "Set storage volume configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2907,7 +2929,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2944,16 +2966,16 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 #, fuzzy
 msgid "Show content of container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2961,7 +2983,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2973,28 +2995,28 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 #, fuzzy
 msgid "Show storage volum configurations"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 #, fuzzy
 msgid "Show storage volume configurations"
 msgstr "Profil %s erstellt\n"
@@ -3003,7 +3025,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Show the container's last 100 log lines?"
 msgstr "Zeige die letzten 100 Zeilen Protokoll des Containers?"
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -3015,7 +3037,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -3036,21 +3058,21 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr "Größe: %.2vMB\n"
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, fuzzy, c-format
 msgid "Size: %s"
 msgstr "Erstellt: %s"
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 #, fuzzy
 msgid "Snapshot storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -3079,7 +3101,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Erstellt: %s"
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -3157,28 +3179,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3253,7 +3275,7 @@ msgstr "entfernte Instanz %s existiert nicht"
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3284,11 +3306,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3298,7 +3320,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr "unbekannter entfernter Instanz Name: %q"
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3325,16 +3347,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3342,12 +3364,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3361,7 +3383,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3384,24 +3406,24 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 #, fuzzy
 msgid "Unset storage volume configuration keys"
 msgstr "Alternatives config Verzeichnis."
@@ -3416,7 +3438,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3425,7 +3447,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3434,12 +3456,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, fuzzy, c-format
 msgid "Vendor: %v"
 msgstr "Fehler: %v\n"
@@ -3449,7 +3471,16 @@ msgstr "Fehler: %v\n"
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, fuzzy, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+"Benutzung: %s\n"
+"\n"
+"Optionen:\n"
+"\n"
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3475,8 +3506,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr "Zustand des laufenden Containers sichern oder nicht"
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3499,15 +3530,15 @@ msgstr "der Name des Ursprung Containers muss angegeben werden"
 msgid "You must specify a source container name"
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3515,16 +3546,16 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 #, fuzzy
 msgid "alias"
 msgstr "Aliasse:\n"
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3548,7 +3579,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3568,7 +3599,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3576,11 +3607,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3596,27 +3627,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3651,7 +3682,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3667,11 +3698,11 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 #, fuzzy
 msgid "delete [<remote>:]<project>"
 msgstr ""
@@ -3715,7 +3746,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3744,11 +3775,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3761,7 +3792,7 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3778,7 +3809,7 @@ msgstr "Fehler: %v\n"
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3822,11 +3853,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 #, fuzzy
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
@@ -3838,7 +3869,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3888,12 +3919,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3901,11 +3932,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3917,23 +3948,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -4057,13 +4088,13 @@ msgstr ""
 "\n"
 "lxc move <Quelle> <Ziel>\n"
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -4075,13 +4106,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -4120,7 +4151,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -4143,7 +4174,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4170,12 +4201,12 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 #, fuzzy
 msgid "ok (y/n)?"
 msgstr "OK (y/n)? "
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 #, fuzzy
 msgid "operation"
 msgstr "Eigenschaften:\n"
@@ -4196,12 +4227,12 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 #, fuzzy
 msgid "profile"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -4236,7 +4267,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -4244,23 +4275,23 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4268,19 +4299,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4293,15 +4324,15 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 #, fuzzy
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
@@ -4312,11 +4343,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4332,7 +4363,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 #, fuzzy
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
@@ -4349,7 +4380,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
@@ -4357,11 +4388,11 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
@@ -4369,7 +4400,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
@@ -4377,7 +4408,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4393,7 +4424,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4401,7 +4432,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4409,27 +4440,27 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 #, fuzzy
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -4438,11 +4469,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4459,7 +4490,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 #, fuzzy
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
@@ -4480,11 +4511,11 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4500,20 +4531,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4521,7 +4552,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4533,23 +4564,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
@@ -4573,11 +4604,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/el.po b/po/el.po
index 498594db50..1efa29ff1d 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2017-02-14 08:00+0000\n"
 "Last-Translator: Simos Xenitellis <simos.65 at gmail.com>\n"
 "Language-Team: Greek <https://hosted.weblate.org/projects/linux-containers/"
@@ -125,7 +125,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -146,7 +146,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -163,7 +163,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -188,16 +188,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -220,11 +220,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -236,15 +236,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -256,19 +256,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -277,22 +277,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -300,7 +300,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -310,7 +310,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -346,7 +346,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -361,7 +361,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -374,7 +374,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -399,46 +399,46 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr "  Χρήση CPU:"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 #, fuzzy
 msgid "CPU usage:"
 msgstr "  Χρήση CPU:"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -452,7 +452,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -473,11 +473,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -498,11 +498,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -512,12 +512,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -529,18 +529,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -564,7 +564,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -573,7 +573,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -660,20 +660,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -705,7 +705,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -717,11 +717,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -733,7 +733,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -747,21 +747,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -773,11 +773,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -789,7 +789,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -801,11 +801,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -818,54 +818,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -905,7 +905,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -926,27 +926,27 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr "  Χρήση CPU:"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 #, fuzzy
 msgid "Disk usage:"
 msgstr "  Χρήση CPU:"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr "  Χρήση CPU:"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr "  Χρήση CPU:"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -959,15 +959,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -991,11 +991,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1007,16 +1007,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1039,7 +1039,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1105,12 +1105,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1141,7 +1141,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1154,7 +1154,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1170,7 +1170,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1194,34 +1194,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1229,7 +1229,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1249,11 +1249,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1273,15 +1273,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1290,28 +1290,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1329,7 +1329,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1341,7 +1341,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1355,7 +1355,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1383,6 +1383,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1391,41 +1395,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1440,7 +1444,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1455,20 +1459,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1476,7 +1485,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1499,15 +1508,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1519,7 +1528,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1527,7 +1536,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1600,11 +1609,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1641,11 +1650,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1653,28 +1662,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1683,11 +1692,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1708,11 +1722,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1724,7 +1738,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1736,7 +1750,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1763,11 +1777,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1787,43 +1801,43 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 #, fuzzy
 msgid "Memory usage:"
 msgstr "  Χρήση μνήμης:"
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 #, fuzzy
 msgid "Memory:"
 msgstr "  Χρήση μνήμης:"
@@ -1841,13 +1855,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1859,34 +1873,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1898,7 +1912,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1932,7 +1946,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1953,31 +1967,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1990,12 +2004,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2024,7 +2038,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr "  Χρήση δικτύου:"
@@ -2062,7 +2076,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2071,11 +2085,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2083,11 +2097,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2105,39 +2119,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2154,7 +2168,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2168,13 +2182,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2194,7 +2208,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2209,32 +2223,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2247,27 +2261,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2276,7 +2290,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2312,7 +2326,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2321,7 +2335,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2330,33 +2344,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2364,12 +2378,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2379,11 +2393,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2391,24 +2405,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2416,31 +2430,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2454,7 +2468,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2480,7 +2494,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2501,31 +2515,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2533,19 +2547,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2581,11 +2595,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2594,11 +2608,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2607,11 +2621,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2620,11 +2634,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2633,11 +2647,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2646,7 +2660,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2682,15 +2696,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2698,7 +2712,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2710,27 +2724,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2738,7 +2752,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2750,7 +2764,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2771,20 +2785,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2812,7 +2826,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2885,28 +2899,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2976,7 +2990,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3005,11 +3019,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3019,7 +3033,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3046,16 +3060,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3063,12 +3077,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3082,7 +3096,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3104,23 +3118,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3134,7 +3148,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3143,7 +3157,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3152,12 +3166,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3167,7 +3181,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3190,8 +3209,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3211,15 +3230,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3227,15 +3246,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3259,7 +3278,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3279,7 +3298,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3287,11 +3306,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3307,27 +3326,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3349,7 +3368,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3361,11 +3380,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3405,7 +3424,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3429,11 +3448,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3441,7 +3460,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3458,7 +3477,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3493,11 +3512,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3505,7 +3524,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3551,12 +3570,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3564,11 +3583,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3580,23 +3599,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3716,13 +3735,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3734,13 +3753,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3779,7 +3798,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3802,7 +3821,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3824,11 +3843,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3844,11 +3863,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3874,27 +3893,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3902,19 +3921,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3922,25 +3941,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3952,7 +3971,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3960,23 +3979,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3984,7 +4003,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3992,7 +4011,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4000,35 +4019,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4040,7 +4059,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4052,11 +4071,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4068,20 +4087,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4089,7 +4108,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4101,23 +4120,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4137,11 +4156,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/es.po b/po/es.po
index 7c1b28d18a..698f4e0c6b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2019-06-13 16:56+0000\n"
 "Last-Translator: Alonso José Lara Plana <alonso.lara.plana at gmail.com>\n"
 "Language-Team: Spanish <https://hosted.weblate.org/projects/linux-containers/"
@@ -182,7 +182,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -203,7 +203,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -235,7 +235,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -260,16 +260,16 @@ msgstr "%v (interrumpe dos o más tiempos a la fuerza)"
 msgid "'%s' isn't a supported file type"
 msgstr "%s no es un tipo de archivo soportado."
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr "(ninguno)"
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -292,11 +292,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -308,15 +308,15 @@ msgstr "ALIASES"
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr "ARQUITECTURA"
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr "Acepta certificado"
 
@@ -328,20 +328,20 @@ msgstr "Accion (predeterminados a GET)"
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Aliases:"
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -350,22 +350,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr "Expira: %s"
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Contraseña admin para %s:"
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -373,7 +373,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Aliases:"
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr "Arquitectura: %s"
@@ -383,7 +383,7 @@ msgstr "Arquitectura: %s"
 msgid "Architecture: %v"
 msgstr "Arquitectura: %s"
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -419,7 +419,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "Tipo de autenticación %s no está soportada por el servidor"
@@ -434,7 +434,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Auto actualización: %s"
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -447,7 +447,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -472,45 +472,45 @@ msgstr "Ambas: todas y el nombre del contenedor dado"
 msgid "Brand: %v"
 msgstr "Creado: %s"
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes recibidos"
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Bytes enviados"
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr "NOMBRE COMÚN"
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr "Uso de CPU:"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr "Uso de CPU (en segundos)"
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr "Uso de CPU:"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr "CREADO"
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr "CREADO EN"
 
@@ -524,7 +524,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr "Cacheado: %s"
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 #, fuzzy
 msgid "Caches:"
 msgstr "Cacheado: %s"
@@ -546,11 +546,11 @@ msgstr "No se puede jalar un directorio sin - recursivo"
 msgid "Can't read from stdin: %s"
 msgstr "No se peude leer desde stdin: %s"
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -559,7 +559,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr "No se puede especificar un remote diferente para renombrar."
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -572,11 +572,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -586,12 +586,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr "Cacheado: %s"
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Certificado de la huella digital: %s"
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr "Certificado del cliente almacenado en el servidor:"
 
@@ -603,18 +603,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr "Nombre del Miembro del Cluster"
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -647,7 +647,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -704,7 +704,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -734,21 +734,21 @@ msgstr "Copiando la imagen: %s"
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, fuzzy, c-format
 msgid "Core %d"
 msgstr "Expira: %s"
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 #, fuzzy
 msgid "Cores:"
 msgstr "Expira: %s"
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -782,7 +782,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -794,11 +794,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -810,7 +810,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr "Creado: %s"
@@ -824,21 +824,21 @@ msgstr "Creando %s"
 msgid "Creating the container"
 msgstr "Creando el contenedor"
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr "DESCRIPCIÓN"
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr "CONTROLADOR"
 
@@ -850,11 +850,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -866,7 +866,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -878,11 +878,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -895,54 +895,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -982,7 +982,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr "El dispostivo ya existe: %s"
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, fuzzy, c-format
 msgid "Device: %s"
 msgstr "Cacheado: %s"
@@ -1003,26 +1003,26 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr "Uso del disco:"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr "Uso del disco:"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr "Uso del disco:"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr "Uso del disco:"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1035,15 +1035,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr "FECHA DE EXPIRACIÓN"
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1067,11 +1067,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1083,16 +1083,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1115,7 +1115,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr "Error actualizando el archivo de plantilla: %s"
@@ -1183,12 +1183,12 @@ msgstr "No se puede proveer el nombre del container a la lista"
 msgid "Exporting the image: %s"
 msgstr "Exportando la imagen: %s"
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr "HUELLA DIGITAL"
 
@@ -1219,7 +1219,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr "El filtrado no está soportado aún"
 
@@ -1232,7 +1232,7 @@ msgstr "Huella dactilar: %s"
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1248,7 +1248,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1272,34 +1272,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1307,7 +1307,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1327,11 +1327,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1351,15 +1351,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1368,28 +1368,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1407,7 +1407,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1419,7 +1419,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1433,7 +1433,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1462,6 +1462,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr "No se puede proveer el nombre del container a la lista"
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1470,41 +1474,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1519,7 +1523,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1534,20 +1538,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, fuzzy, c-format
+msgid "IsSM: %s (%s)"
+msgstr "Cacheado: %s"
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1555,7 +1564,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1578,16 +1587,16 @@ msgstr "Arquitectura: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 #, fuzzy
 msgid "List aliases"
 msgstr "Aliases:"
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1599,7 +1608,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1607,7 +1616,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1680,11 +1689,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1721,11 +1730,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1733,28 +1742,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr "Registro:"
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1763,11 +1772,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, fuzzy, c-format
+msgid "MAD: %s (%s)"
+msgstr "Cacheado: %s"
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1788,11 +1802,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1804,7 +1818,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1816,7 +1830,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1843,11 +1857,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1867,42 +1881,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1919,14 +1933,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 #, fuzzy
 msgid "Missing container name"
 msgstr "Nombre del contenedor es: %s"
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1938,35 +1952,35 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 #, fuzzy
 msgid "Missing project name"
 msgstr "Nombre del contenedor es: %s"
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1979,7 +1993,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr "%s no es un directorio"
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -2013,7 +2027,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -2034,31 +2048,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2071,12 +2085,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2096,7 +2110,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2105,7 +2119,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2142,7 +2156,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2151,11 +2165,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2163,11 +2177,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2185,39 +2199,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2234,7 +2248,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2248,13 +2262,13 @@ msgstr "Auto actualización: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2274,7 +2288,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr "Procesos: %d"
@@ -2289,32 +2303,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr "Perfil %s añadido a %s"
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr "Perfil %s creado"
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr "Perfil %s eliminado"
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr "Perfil %s eliminado de %s"
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr "Perfil %s renombrado a %s"
@@ -2327,27 +2341,27 @@ msgstr "Perfil para aplicar al nuevo contenedor"
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2356,7 +2370,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2392,7 +2406,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2401,7 +2415,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2410,33 +2424,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2444,12 +2458,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2459,11 +2473,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2471,24 +2485,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2496,31 +2510,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2534,7 +2548,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2560,7 +2574,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2581,31 +2595,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2613,19 +2627,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2661,11 +2675,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2674,11 +2688,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2687,11 +2701,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2700,11 +2714,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2713,11 +2727,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2726,7 +2740,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2762,15 +2776,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2778,7 +2792,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2790,27 +2804,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2818,7 +2832,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2830,7 +2844,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2851,20 +2865,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, fuzzy, c-format
 msgid "Size: %s"
 msgstr "Auto actualización: %s"
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2892,7 +2906,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Auto actualización: %s"
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2965,28 +2979,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3056,7 +3070,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3085,11 +3099,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3099,7 +3113,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3126,16 +3140,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, fuzzy, c-format
 msgid "Type: %s"
 msgstr "Expira: %s"
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3143,12 +3157,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3162,7 +3176,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3184,23 +3198,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3214,7 +3228,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3223,7 +3237,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3232,12 +3246,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3247,7 +3261,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, fuzzy, c-format
+msgid "Verb: %s (%s)"
+msgstr "Cacheado: %s"
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3270,8 +3289,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3291,15 +3310,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3307,16 +3326,16 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 #, fuzzy
 msgid "alias"
 msgstr "Aliases:"
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3340,7 +3359,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3360,7 +3379,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3368,11 +3387,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3388,27 +3407,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3430,7 +3449,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3442,11 +3461,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3486,7 +3505,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3510,11 +3529,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3523,7 +3542,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3540,7 +3559,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, fuzzy, c-format
 msgid "expires at %s"
 msgstr "Expira: %s"
@@ -3575,11 +3594,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3587,7 +3606,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3633,12 +3652,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3646,11 +3665,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3662,23 +3681,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3798,13 +3817,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3816,13 +3835,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3861,7 +3880,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3884,7 +3903,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3906,11 +3925,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3926,11 +3945,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3956,27 +3975,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3984,19 +4003,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4004,25 +4023,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4034,7 +4053,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -4042,23 +4061,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4067,7 +4086,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4075,7 +4094,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4083,35 +4102,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4124,7 +4143,7 @@ msgstr "No se puede proveer el nombre del container a la lista"
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4136,11 +4155,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4152,20 +4171,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4173,7 +4192,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4185,23 +4204,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4222,11 +4241,11 @@ msgstr ""
 msgid "volume"
 msgstr "Columnas"
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 906d5d9dcc..99da2b2561 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 32f70e968e..041e5dd21d 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/fr.po b/po/fr.po
index e0b877e64f..9078a55869 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2019-01-04 18:07+0000\n"
 "Last-Translator: Deleted User <noreply+12102 at weblate.org>\n"
 "Language-Team: French <https://hosted.weblate.org/projects/linux-containers/"
@@ -207,7 +207,7 @@ msgstr ""
 "###\n"
 "### Notez que seule la configuration peut être modifiée."
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -244,7 +244,7 @@ msgstr ""
 "###\n"
 "### Notez que le nom est affiché mais ne peut être modifié"
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -278,7 +278,7 @@ msgstr ""
 "###\n"
 "### Notez que le nom est affiché mais ne peut être modifié"
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -303,16 +303,16 @@ msgstr "%v (interrompre encore deux fois pour forcer)"
 msgid "'%s' isn't a supported file type"
 msgstr "'%s' n'est pas un format de fichier pris en charge."
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr "(aucun)"
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -335,11 +335,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -352,16 +352,16 @@ msgstr "ALIAS"
 msgid "ARCH"
 msgstr "ARCH"
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr "ARCHITECTURE"
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 #, fuzzy
 msgid "AUTH TYPE"
 msgstr "TYPE"
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr "Accepter le certificat"
 
@@ -373,20 +373,20 @@ msgstr "Action (GET par défaut)"
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Alias :"
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 #, fuzzy
 msgid "Add profiles to containers"
 msgstr "Création du conteneur"
@@ -396,22 +396,22 @@ msgstr "Création du conteneur"
 msgid "Address: %s"
 msgstr "Expire : %s"
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Mot de passe administrateur pour %s : "
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, fuzzy, c-format
 msgid "Alias %s already exists"
 msgstr "le serveur distant %s existe déjà"
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, fuzzy, c-format
 msgid "Alias %s doesn't exist"
 msgstr "le serveur distant %s n'existe pas"
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -419,7 +419,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Alias :"
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architecture : %s"
@@ -429,7 +429,7 @@ msgstr "Architecture : %s"
 msgid "Architecture: %v"
 msgstr "Architecture : %s"
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -466,7 +466,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "Le type d'authentification '%s' n'est pas supporté par le serveur"
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Mise à jour auto. : %s"
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -495,7 +495,7 @@ msgstr "Image copiée avec succès !"
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -520,46 +520,46 @@ msgstr ""
 msgid "Brand: %v"
 msgstr "Créé : %s"
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Octets reçus"
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Octets émis"
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr "COMMON NAME"
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr "CPU utilisé :"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr "CPU utilisé (en secondes)"
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr "CPU utilisé :"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 #, fuzzy
 msgid "CREATED"
 msgstr "CRÉÉ À"
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr "CRÉÉ À"
 
@@ -573,7 +573,7 @@ msgstr "Afficher la version du client"
 msgid "Cached: %s"
 msgstr "Créé : %s"
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 #, fuzzy
 msgid "Caches:"
 msgstr "Créé : %s"
@@ -596,12 +596,12 @@ msgstr "impossible de récupérer un répertoire sans --recursive"
 msgid "Can't read from stdin: %s"
 msgstr "Impossible de lire depuis stdin : %s"
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 #, fuzzy
 msgid "Can't remove the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -609,7 +609,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -624,11 +624,11 @@ msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 "Impossible de désaffecter la clé '%s', elle n'est pas définie actuellement."
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -638,12 +638,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr "Créé : %s"
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Empreinte du certificat : %s"
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr "Certificat client enregistré sur le serveur : "
 
@@ -655,18 +655,18 @@ msgstr "Afficher la version du client"
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -696,7 +696,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 #, fuzzy
 msgid "Config key/value to apply to the new project"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
@@ -707,7 +707,7 @@ msgid "Config key/value to apply to the target container"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -765,7 +765,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -797,21 +797,21 @@ msgstr "Copie de l'image : %s"
 msgid "Copying the storage volume: %s"
 msgstr "Copie de l'image : %s"
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, fuzzy, c-format
 msgid "Core %d"
 msgstr "erreur : %v"
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 #, fuzzy
 msgid "Cores:"
 msgstr "erreur : %v"
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr "Impossible de créer le dossier de stockage des certificats serveurs"
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -862,7 +862,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "Création du conteneur"
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 #, fuzzy
 msgid "Create new container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -876,12 +876,12 @@ msgstr "Copie de l'image : %s"
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 #, fuzzy
 msgid "Create profiles"
 msgstr "Créé : %s"
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 #, fuzzy
 msgid "Create projects"
 msgstr "Créé : %s"
@@ -896,7 +896,7 @@ msgstr "Copie de l'image : %s"
 msgid "Create the container with no profiles applied"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr "Créé : %s"
@@ -910,21 +910,21 @@ msgstr "Création de %s"
 msgid "Creating the container"
 msgstr "Création du conteneur"
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr "PILOTE"
 
@@ -936,11 +936,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr "Définir un algorithme de compression : pour image ou aucun"
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 #, fuzzy
 msgid "Delete container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -954,7 +954,7 @@ msgstr "Forcer le conteneur à s'arrêter"
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -967,11 +967,11 @@ msgstr "Récupération de l'image : %s"
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 #, fuzzy
 msgid "Delete projects"
 msgstr "Récupération de l'image : %s"
@@ -986,54 +986,54 @@ msgid "Delete storage volumes"
 msgstr "Copie de l'image : %s"
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -1073,7 +1073,7 @@ msgstr "Périphérique %s retiré de %s"
 msgid "Device already exists: %s"
 msgstr "le serveur distant %s existe déjà"
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, fuzzy, c-format
 msgid "Device: %s"
 msgstr "Serveur distant : %s"
@@ -1095,27 +1095,27 @@ msgstr "Désactiver l'allocation pseudo-terminal"
 msgid "Disable stdin (reads from /dev/null)"
 msgstr "Désactiver stdin (lecture à partir de /dev/null)"
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr "  Disque utilisé :"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 #, fuzzy
 msgid "Disk usage:"
 msgstr "  Disque utilisé :"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr "  Disque utilisé :"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr "  Disque utilisé :"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 #, fuzzy
 msgid "Don't require user confirmation for using --force"
 msgstr "Requérir une confirmation de l'utilisateur"
@@ -1129,15 +1129,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr "ÉPHÉMÈRE"
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr "DATE D'EXPIRATION"
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 #, fuzzy
 msgid "Edit container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -1163,11 +1163,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 #, fuzzy
 msgid "Edit project configurations as YAML"
 msgstr "Clé de configuration invalide"
@@ -1180,16 +1180,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1212,7 +1212,7 @@ msgstr "Variable d'environnement (de la forme HOME=/home/foo) à positionner"
 msgid "Ephemeral container"
 msgstr "Conteneur éphémère"
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr "Erreur de mise à jour du modèle de fichier : %s"
@@ -1290,13 +1290,13 @@ msgstr "Import de l'image : %s"
 msgid "Exporting the image: %s"
 msgstr "Import de l'image : %s"
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 #, fuzzy
 msgid "FILENAME"
 msgstr "NOM"
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr "EMPREINTE"
 
@@ -1330,7 +1330,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr "Mode rapide (identique à --columns=nsacPt"
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1343,7 +1343,7 @@ msgstr "Empreinte : %s"
 msgid "Force pseudo-terminal allocation"
 msgstr "Forcer l'allocation d'un pseudo-terminal"
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1360,7 +1360,7 @@ msgstr "Forcer la suppression des conteneurs arrêtés"
 msgid "Force using the local unix socket"
 msgstr "Forcer l'utilisation de la socket unix locale"
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1384,34 +1384,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1419,7 +1419,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr "Génération d'un certificat client. Ceci peut prendre une minute…"
 
@@ -1441,12 +1441,12 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 #, fuzzy
 msgid "Get values for profile configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 #, fuzzy
 msgid "Get values for project configuration keys"
 msgstr "Clé de configuration invalide"
@@ -1467,16 +1467,16 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 #, fuzzy
 msgid "HOSTNAME"
 msgstr "NOM"
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 #, fuzzy
 msgid "ID"
 msgstr "PID"
@@ -1486,28 +1486,28 @@ msgstr "PID"
 msgid "ID: %d"
 msgstr "Pid : %d"
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr "IPv4"
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr "IPv6"
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr "DATE D'ÉMISSION"
 
@@ -1529,7 +1529,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Ignorer l'état du conteneur (seulement pour start)"
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1542,7 +1542,7 @@ msgstr "Image copiée avec succès !"
 msgid "Image exported successfully!"
 msgstr "Image copiée avec succès !"
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1556,7 +1556,7 @@ msgstr "Image importée avec l'empreinte : %s"
 msgid "Image imported with fingerprint: %s"
 msgstr "Image importée avec l'empreinte : %s"
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 #, fuzzy
 msgid "Image refreshed successfully!"
 msgstr "Image copiée avec succès !"
@@ -1587,6 +1587,10 @@ msgstr "Import de l'image : %s"
 msgid "Importing container: %s"
 msgstr "Ignorer l'état du conteneur (seulement pour start)"
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1595,41 +1599,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr "Schème d'URL invalide \"%s\" in \"%s\""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr "Certificat invalide"
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, fuzzy, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "Clé de configuration invalide"
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Cible invalide %s"
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1645,7 +1649,7 @@ msgstr "nombre d'arguments incorrect pour la sous-comande"
 msgid "Invalid path %s"
 msgstr "Cible invalide %s"
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, fuzzy, c-format
 msgid "Invalid protocol: %s"
 msgstr "Cible invalide %s"
@@ -1660,20 +1664,25 @@ msgstr "Source invalide %s"
 msgid "Invalid target %s"
 msgstr "Cible invalide %s"
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr "IPs :"
 
+#: lxc/info.go:203
+#, fuzzy, c-format
+msgid "IsSM: %s (%s)"
+msgstr "Créé : %s"
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr "Garder l'image à jour après la copie initiale"
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr "DERNIÈRE UTILISATION À"
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1681,7 +1690,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1704,16 +1713,16 @@ msgstr "Architecture : %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 #, fuzzy
 msgid "List aliases"
 msgstr "Alias :"
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1725,7 +1734,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1734,7 +1743,7 @@ msgstr ""
 msgid "List container devices"
 msgstr "Création du conteneur"
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 #, fuzzy
 msgid "List container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -1869,11 +1878,11 @@ msgstr ""
 "    lxc list -c n,volatile.base_image:\\BASE IMAGE\\:0,s46,volatile.eth0."
 "hwaddr:MAC"
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1910,11 +1919,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1923,28 +1932,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr "Journal : "
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1953,11 +1962,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, fuzzy, c-format
+msgid "MAD: %s (%s)"
+msgstr "Créé : %s"
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr "GÉRÉ"
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1978,11 +1992,11 @@ msgstr "Rendre l'image publique"
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1995,7 +2009,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr "Création du conteneur"
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 #, fuzzy
 msgid "Manage container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -2009,7 +2023,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr "Transfert de l'image : %s"
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 #, fuzzy
 msgid "Manage image aliases"
 msgstr "Rendre l'image publique"
@@ -2038,11 +2052,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 #, fuzzy
 msgid "Manage projects"
 msgstr "Rendre l'image publique"
@@ -2065,43 +2079,43 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, fuzzy, c-format
 msgid "Member %s removed"
 msgstr "Profil %s supprimé de %s"
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, fuzzy, c-format
 msgid "Member %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr "Mémoire (courante)"
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr "Mémoire (pointe)"
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 #, fuzzy
 msgid "Memory usage:"
 msgstr "  Mémoire utilisée :"
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 #, fuzzy
 msgid "Memory:"
 msgstr "  Mémoire utilisée :"
@@ -2120,14 +2134,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 #, fuzzy
 msgid "Missing container name"
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 #, fuzzy
 msgid "Missing container.name name"
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
@@ -2141,37 +2155,37 @@ msgstr "Résumé manquant."
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 #, fuzzy
 msgid "Missing network name"
 msgstr "Nom du réseau"
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 #, fuzzy
 msgid "Missing pool name"
 msgstr "Nom de l'ensemble de stockage"
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 #, fuzzy
 msgid "Missing project name"
 msgstr "Nom de l'ensemble de stockage"
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -2185,7 +2199,7 @@ msgstr "Copie de l'image : %s"
 msgid "Missing target directory"
 msgstr "%s n'est pas un répertoire"
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, fuzzy, c-format
 msgid "Model: %s"
 msgstr "Publié : %s"
@@ -2222,7 +2236,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr "Forcer le conteneur à s'arrêter"
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 #, fuzzy
 msgid "Move storage volumes between pools"
 msgstr "Copie de l'image : %s"
@@ -2245,31 +2259,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr "NOM"
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr "NON"
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2282,12 +2296,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr "Nom : %s"
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, fuzzy, c-format
 msgid "Name: %v"
 msgstr "Nom : %s"
@@ -2307,7 +2321,7 @@ msgstr "Le réseau %s a été supprimé"
 msgid "Network %s pending on member %s"
 msgstr "Le réseau %s a été créé"
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, fuzzy, c-format
 msgid "Network %s renamed to %s"
 msgstr "Le réseau %s a été créé"
@@ -2316,7 +2330,7 @@ msgstr "Le réseau %s a été créé"
 msgid "Network name"
 msgstr "Nom du réseau"
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr "  Réseau utilisé :"
@@ -2357,7 +2371,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2368,13 +2382,13 @@ msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 "Seuls les volumes \"personnalisés\" peuvent être attachés aux conteneurs."
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 #, fuzzy
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 "Seuls les volumes \"personnalisés\" peuvent être attachés aux conteneurs."
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr "Seules les URLs https sont supportées par simplestreams"
 
@@ -2383,12 +2397,12 @@ msgstr "Seules les URLs https sont supportées par simplestreams"
 msgid "Only https:// is supported for remote image import"
 msgstr "Seul https:// est supporté par l'import d'images distantes."
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 #, fuzzy
 msgid "Only managed networks can be modified"
 msgstr "Seuls les réseaux gérés par LXD peuvent être modifiés."
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, fuzzy, c-format
 msgid "Operation %s deleted"
 msgstr "Le réseau %s a été supprimé"
@@ -2407,39 +2421,39 @@ msgstr "Surcharger le mode terminal (auto, interactif ou non-interactif)"
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr "PERSISTANT"
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr "PROFILS"
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr "PROTOCOLE"
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr "PUBLIC"
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr "Paquets reçus"
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr "Paquets émis"
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 #, fuzzy
 msgid "Partitions:"
 msgstr "Options :"
@@ -2458,7 +2472,7 @@ msgstr "Création du conteneur"
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr "Pid : %d"
@@ -2472,13 +2486,13 @@ msgstr "État : %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr "Appuyer sur Entrée pour ouvrir à nouveau l'éditeur"
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr "Appuyer sur Entrée pour lancer à nouveau l'éditeur"
 
@@ -2498,7 +2512,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr "Processus : %d"
@@ -2513,32 +2527,32 @@ msgstr "l'analyse des alias a échoué %s\n"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr "Profil %s ajouté à %s"
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr "Profil %s créé"
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr "Profil %s supprimé"
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, fuzzy, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr "Profils %s appliqués à %s"
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr "Profil %s supprimé de %s"
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, fuzzy, c-format
 msgid "Profile %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
@@ -2552,27 +2566,27 @@ msgstr "Profil à appliquer au nouveau conteneur"
 msgid "Profile to apply to the target container"
 msgstr "Profil à appliquer au nouveau conteneur"
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr "Profils %s appliqués à %s"
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr "Profils : %s"
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, fuzzy, c-format
 msgid "Project %s created"
 msgstr "Profil %s créé"
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, fuzzy, c-format
 msgid "Project %s deleted"
 msgstr "Profil %s supprimé"
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, fuzzy, c-format
 msgid "Project %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
@@ -2581,7 +2595,7 @@ msgstr "Profil %s ajouté à %s"
 msgid "Properties:"
 msgstr "Propriétés :"
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr "Serveur d'images public"
 
@@ -2620,7 +2634,7 @@ msgstr "Création du conteneur"
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2630,7 +2644,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr "Pousser ou récupérer des fichiers récursivement"
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 #, fuzzy
 msgid "Refresh images"
 msgstr "Récupération de l'image : %s"
@@ -2640,33 +2654,33 @@ msgstr "Récupération de l'image : %s"
 msgid "Refreshing container: %s"
 msgstr "Ignorer l'état du conteneur (seulement pour start)"
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, fuzzy, c-format
 msgid "Refreshing the image: %s"
 msgstr "Récupération de l'image : %s"
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, fuzzy, c-format
 msgid "Remote %s already exists"
 msgstr "le serveur distant %s existe déjà"
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, fuzzy, c-format
 msgid "Remote %s doesn't exist"
 msgstr "le serveur distant %s n'existe pas"
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, fuzzy, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "le serveur distant %s existe en tant que <%s>"
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, fuzzy, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr "le serveur distant %s est statique et ne peut être modifié"
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr "Mot de passe de l'administrateur distant"
 
@@ -2675,12 +2689,12 @@ msgstr "Mot de passe de l'administrateur distant"
 msgid "Remote operation canceled by user"
 msgstr "Certificat serveur rejeté par l'utilisateur"
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr "Serveur distant : %s"
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, fuzzy, c-format
 msgid "Removable: %v"
 msgstr "Serveur distant : %s"
@@ -2690,11 +2704,11 @@ msgstr "Serveur distant : %s"
 msgid "Remove %s (yes/no): "
 msgstr "Supprimer %s (oui/non) : "
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 #, fuzzy
 msgid "Remove aliases"
 msgstr "Mot de passe de l'administrateur distant"
@@ -2704,25 +2718,25 @@ msgstr "Mot de passe de l'administrateur distant"
 msgid "Remove container devices"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 #, fuzzy
 msgid "Remove profiles from containers"
 msgstr "Création du conteneur"
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2731,34 +2745,34 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr "Forcer le conteneur à s'arrêter"
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 #, fuzzy
 msgid "Rename projects"
 msgstr "Créé : %s"
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 #, fuzzy
 msgid "Rename storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 #, fuzzy
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr "Copie de l'image : %s"
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2772,7 +2786,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr "Requérir une confirmation de l'utilisateur"
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr "Ressources :"
 
@@ -2801,7 +2815,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 #, fuzzy
 msgid "Restore storage volume snapshots"
 msgstr "Forcer le conteneur à s'arrêter"
@@ -2824,32 +2838,32 @@ msgstr ""
 msgid "SIZE"
 msgstr "TAILLE"
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr "INSTANTANÉS"
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr "SOURCE"
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr "ÉTAT"
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr "STATIQUE"
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 #, fuzzy
 msgid "STATUS"
 msgstr "ÉTAT"
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr "ENSEMBLE DE STOCKAGE"
 
@@ -2857,21 +2871,21 @@ msgstr "ENSEMBLE DE STOCKAGE"
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr "Certificat serveur rejeté par l'utilisateur"
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 #, fuzzy
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 "Le serveur ne nous fait pas confiance après l'ajout de notre certificat"
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr "Protocole du serveur (lxd ou simplestreams)"
 
@@ -2909,12 +2923,12 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 #, fuzzy
 msgid "Set network configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2923,12 +2937,12 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 #, fuzzy
 msgid "Set profile configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2937,12 +2951,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2951,12 +2965,12 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 #, fuzzy
 msgid "Set storage pool configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2965,12 +2979,12 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 #, fuzzy
 msgid "Set storage volume configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2979,7 +2993,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -3018,16 +3032,16 @@ msgstr "Afficher la configuration étendue"
 msgid "Show container or server information"
 msgstr "Afficher des informations supplémentaires"
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 #, fuzzy
 msgid "Show content of container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -3035,7 +3049,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -3049,31 +3063,31 @@ msgstr "Afficher les commandes moins communes"
 msgid "Show local and remote versions"
 msgstr "Afficher la version du client"
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 #, fuzzy
 msgid "Show network configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 #, fuzzy
 msgid "Show profile configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 #, fuzzy
 msgid "Show project options"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 #, fuzzy
 msgid "Show storage volum configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 #, fuzzy
 msgid "Show storage volume configurations"
 msgstr "Afficher la configuration étendue"
@@ -3082,7 +3096,7 @@ msgstr "Afficher la configuration étendue"
 msgid "Show the container's last 100 log lines?"
 msgstr "Afficher les 100 dernières lignes du journal du conteneur ?"
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 #, fuzzy
 msgid "Show the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
@@ -3095,7 +3109,7 @@ msgstr "Afficher la configuration étendue"
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -3116,21 +3130,21 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr "Taille : %.2f Mo"
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, fuzzy, c-format
 msgid "Size: %s"
 msgstr "État : %s"
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 #, fuzzy
 msgid "Snapshot storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr "Instantanés :"
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -3159,7 +3173,7 @@ msgstr "Démarrage de %s"
 msgid "State: %s"
 msgstr "État : %s"
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr "État : %s"
@@ -3236,30 +3250,30 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr "Swap (courant)"
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr "Swap (pointe)"
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 #, fuzzy
 msgid "Switch the current project"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 #, fuzzy
 msgid "Switch the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr "TYPE"
 
@@ -3337,7 +3351,7 @@ msgstr "le périphérique indiqué ne correspond pas au réseau"
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr "Il n'existe pas d'\"image\".  Vouliez-vous un alias ?"
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3368,11 +3382,11 @@ msgstr ""
 "Pour démarrer votre premier conteneur, essayer : lxc launch ubuntu:16.04"
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3382,7 +3396,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr "Transfert de l'image : %s"
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3409,16 +3423,16 @@ msgstr "Transfert de l'image : %s"
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr "Essayer `lxc info --show-log %s` pour plus d'informations"
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, fuzzy, c-format
 msgid "Type: %s"
 msgstr "Expire : %s"
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr "Type : éphémère"
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr "Type : persistant"
 
@@ -3426,12 +3440,12 @@ msgstr "Type : persistant"
 msgid "UPLOAD DATE"
 msgstr "DATE DE PUBLICATION"
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr "URL"
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr "UTILISÉ PAR"
 
@@ -3445,7 +3459,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3470,27 +3484,27 @@ msgstr "Clé de configuration invalide"
 msgid "Unset container or server configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 #, fuzzy
 msgid "Unset network configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 #, fuzzy
 msgid "Unset profile configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 #, fuzzy
 msgid "Unset storage pool configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 #, fuzzy
 msgid "Unset storage volume configuration keys"
 msgstr "Clé de configuration invalide"
@@ -3505,7 +3519,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, fuzzy, c-format
 msgid "Used: %v"
 msgstr "Publié : %s"
@@ -3514,7 +3528,7 @@ msgstr "Publié : %s"
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 #, fuzzy
 msgid "User aborted delete operation"
 msgstr "L'utilisateur a annulé l'opération de suppression."
@@ -3524,12 +3538,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, fuzzy, c-format
 msgid "Vendor: %v"
 msgstr "erreur : %v"
@@ -3539,7 +3553,12 @@ msgstr "erreur : %v"
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, fuzzy, c-format
+msgid "Verb: %s (%s)"
+msgstr "Créé : %s"
+
+#: lxc/info.go:251
 #, fuzzy, c-format
 msgid "WWN: %s"
 msgstr "Nom : %s"
@@ -3565,8 +3584,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr "Réaliser ou pas l'instantané de l'état de fonctionnement du conteneur"
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr "OUI"
 
@@ -3589,15 +3608,15 @@ msgstr "vous devez spécifier un nom de conteneur source"
 msgid "You must specify a source container name"
 msgstr "vous devez spécifier un nom de conteneur source"
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3605,16 +3624,16 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 #, fuzzy
 msgid "alias"
 msgstr "Alias :"
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3638,7 +3657,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3658,7 +3677,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3666,11 +3685,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3686,28 +3705,28 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 #, fuzzy
 msgid "current"
 msgstr "Swap (courant)"
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr "par défaut"
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3745,7 +3764,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3761,11 +3780,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 #, fuzzy
 msgid "delete [<remote>:]<project>"
 msgstr ""
@@ -3809,7 +3828,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3841,11 +3860,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3861,7 +3880,7 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3878,7 +3897,7 @@ msgstr "erreur : %v"
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, fuzzy, c-format
 msgid "expires at %s"
 msgstr "Expire : %s"
@@ -3925,11 +3944,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 #, fuzzy
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
@@ -3941,7 +3960,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 #, fuzzy
 msgid "get-default"
 msgstr "par défaut"
@@ -3992,12 +4011,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -4005,11 +4024,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -4021,23 +4040,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -4179,13 +4198,13 @@ msgstr ""
 "lxc move <container>/<old snapshot name> <container>/<new snapshot name>\n"
 "    Renomme un instantané."
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -4197,13 +4216,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -4242,7 +4261,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -4265,7 +4284,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4296,11 +4315,11 @@ msgstr "Nom du réseau"
 msgid "no"
 msgstr "non"
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr "ok (y/n) ?"
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 #, fuzzy
 msgid "operation"
 msgstr "Propriétés :"
@@ -4321,12 +4340,12 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 #, fuzzy
 msgid "profile"
 msgstr "Profils : %s"
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -4369,7 +4388,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -4377,24 +4396,24 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 #, fuzzy
 msgid "remote"
 msgstr "Serveur distant : %s"
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4402,19 +4421,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4430,15 +4449,15 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 #, fuzzy
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
@@ -4452,11 +4471,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4472,7 +4491,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 #, fuzzy
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
@@ -4492,7 +4511,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
@@ -4500,11 +4519,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
@@ -4512,7 +4531,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
@@ -4520,7 +4539,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4536,7 +4555,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4544,7 +4563,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4552,27 +4571,27 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 #, fuzzy
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -4584,11 +4603,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4608,7 +4627,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 #, fuzzy
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
@@ -4632,11 +4651,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr "à suivi d'état"
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr "sans suivi d'état"
 
@@ -4652,22 +4671,22 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 #, fuzzy
 msgid "switch <remote>"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 #, fuzzy
 msgid "switch [<remote>:] <project>"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr "pris à %s"
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4675,7 +4694,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4687,23 +4706,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
@@ -4728,11 +4747,11 @@ msgstr ""
 msgid "volume"
 msgstr "Colonnes"
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr "oui"
diff --git a/po/hi.po b/po/hi.po
index 739dfaa2b2..90611ced15 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/id.po b/po/id.po
index fa825e8dc2..46c3341e07 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/it.po b/po/it.po
index 879c0507f4..5ef7e71324 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2017-08-18 14:22+0000\n"
 "Last-Translator: Alberto Donato <alberto.donato at gmail.com>\n"
 "Language-Team: Italian <https://hosted.weblate.org/projects/linux-containers/"
@@ -147,7 +147,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -168,7 +168,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -200,7 +200,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -225,16 +225,16 @@ msgstr "%v (interrompi altre due volte per forzare)"
 msgid "'%s' isn't a supported file type"
 msgstr "'%s' non è un tipo di file supportato."
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr "(nessuno)"
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -257,11 +257,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -273,15 +273,15 @@ msgstr "ALIAS"
 msgid "ARCH"
 msgstr "ARCH"
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr "ARCHITETTURA"
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr "Accetta certificato"
 
@@ -293,20 +293,20 @@ msgstr "Azione (default a GET)"
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Alias:"
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -315,22 +315,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Password amministratore per %s: "
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, fuzzy, c-format
 msgid "Alias %s already exists"
 msgstr "il remote %s esiste già"
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, fuzzy, c-format
 msgid "Alias %s doesn't exist"
 msgstr "il remote %s non esiste"
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -338,7 +338,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Alias:"
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architettura: %s"
@@ -348,7 +348,7 @@ msgstr "Architettura: %s"
 msgid "Architecture: %v"
 msgstr "Architettura: %s"
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -384,7 +384,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -399,7 +399,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Aggiornamento automatico: %s"
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -412,7 +412,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -437,46 +437,46 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes ricevuti"
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Byte inviati"
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr "NOME COMUNE"
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr "Utilizzo CPU:"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr "Utilizzo CPU (in secondi)"
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr "Utilizzo CPU:"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 #, fuzzy
 msgid "CREATED"
 msgstr "CREATO IL"
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr "CREATO IL"
 
@@ -490,7 +490,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -511,11 +511,11 @@ msgstr "Impossibile effettuare il pull di una directory senza --recursive"
 msgid "Can't read from stdin: %s"
 msgstr "Impossible leggere da stdin: %s"
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -523,7 +523,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -536,11 +536,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -550,12 +550,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr "Certificato del client salvato dal server: "
 
@@ -567,18 +567,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -611,7 +611,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -668,7 +668,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -698,20 +698,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -746,7 +746,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "Creazione del container in corso"
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -758,11 +758,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -788,21 +788,21 @@ msgstr "Creazione di %s in corso"
 msgid "Creating the container"
 msgstr "Creazione del container in corso"
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr "DESCRIZIONE"
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr "DRIVER"
 
@@ -814,11 +814,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -830,7 +830,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -842,11 +842,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -859,54 +859,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -946,7 +946,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr "La periferica esiste già: %s"
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -967,26 +967,26 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr "Utilizzo disco:"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr "Utilizzo disco:"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr "Utilizzo disco:"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr "Utilizzo disco:"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -999,15 +999,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr "DATA DI SCADENZA"
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1031,11 +1031,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1047,16 +1047,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1079,7 +1079,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1147,12 +1147,12 @@ msgstr "Creazione del container in corso"
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1183,7 +1183,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 #, fuzzy
 msgid "Filtering isn't supported yet"
 msgstr "'%s' non è un tipo di file supportato."
@@ -1197,7 +1197,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1213,7 +1213,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1237,34 +1237,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1272,7 +1272,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1292,11 +1292,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1316,15 +1316,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1333,28 +1333,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1373,7 +1373,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1385,7 +1385,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1399,7 +1399,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1428,6 +1428,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr "Creazione del container in corso"
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1436,41 +1440,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Proprietà errata: %s"
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1486,7 +1490,7 @@ msgstr "numero errato di argomenti del sottocomando"
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, fuzzy, c-format
 msgid "Invalid protocol: %s"
 msgstr "Proprietà errata: %s"
@@ -1501,20 +1505,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1522,7 +1531,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1545,16 +1554,16 @@ msgstr "Architettura: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 #, fuzzy
 msgid "List aliases"
 msgstr "Alias:"
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1566,7 +1575,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1574,7 +1583,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1648,11 +1657,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1689,11 +1698,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1701,28 +1710,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1731,11 +1740,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1773,7 +1787,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr "Creazione del container in corso"
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1786,7 +1800,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr "Creazione del container in corso"
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1813,11 +1827,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1837,42 +1851,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1889,14 +1903,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 #, fuzzy
 msgid "Missing container name"
 msgstr "Il nome del container è: %s"
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1908,35 +1922,35 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 #, fuzzy
 msgid "Missing project name"
 msgstr "Il nome del container è: %s"
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1948,7 +1962,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1982,7 +1996,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -2003,31 +2017,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2040,12 +2054,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2065,7 +2079,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2074,7 +2088,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2111,7 +2125,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2120,11 +2134,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2132,11 +2146,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2154,39 +2168,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2204,7 +2218,7 @@ msgstr "Creazione del container in corso"
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2218,13 +2232,13 @@ msgstr "Aggiornamento automatico: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2244,7 +2258,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2259,32 +2273,32 @@ msgstr "errore di processamento degli alias %s\n"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2297,27 +2311,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2326,7 +2340,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2362,7 +2376,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2371,7 +2385,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2380,33 +2394,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, fuzzy, c-format
 msgid "Remote %s already exists"
 msgstr "il remote %s esiste già"
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, fuzzy, c-format
 msgid "Remote %s doesn't exist"
 msgstr "il remote %s non esiste"
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, fuzzy, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "il remote %s esiste come %s"
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, fuzzy, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr "il remote %s è statico e non può essere modificato"
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2414,12 +2428,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2429,11 +2443,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2441,24 +2455,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2466,31 +2480,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2504,7 +2518,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2531,7 +2545,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2552,31 +2566,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2584,19 +2598,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2632,11 +2646,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2645,11 +2659,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2658,11 +2672,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2671,11 +2685,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2684,11 +2698,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2697,7 +2711,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2733,15 +2747,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2749,7 +2763,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2761,27 +2775,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2789,7 +2803,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2801,7 +2815,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2822,20 +2836,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, fuzzy, c-format
 msgid "Size: %s"
 msgstr "Aggiornamento automatico: %s"
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2864,7 +2878,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Aggiornamento automatico: %s"
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2938,28 +2952,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3030,7 +3044,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3059,11 +3073,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3073,7 +3087,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3100,16 +3114,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3117,12 +3131,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3136,7 +3150,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3159,23 +3173,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3189,7 +3203,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3198,7 +3212,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3207,12 +3221,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3222,7 +3236,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3245,8 +3264,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3267,15 +3286,15 @@ msgstr "Occorre specificare un nome di container come origine"
 msgid "You must specify a source container name"
 msgstr "Occorre specificare un nome di container come origine"
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3283,16 +3302,16 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 #, fuzzy
 msgid "alias"
 msgstr "Alias:"
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3316,7 +3335,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3336,7 +3355,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3344,11 +3363,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3364,27 +3383,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3406,7 +3425,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3418,11 +3437,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3462,7 +3481,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3486,11 +3505,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3499,7 +3518,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr "Creazione del container in corso"
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3516,7 +3535,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3551,11 +3570,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3563,7 +3582,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3609,12 +3628,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3622,11 +3641,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3638,23 +3657,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3774,13 +3793,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3792,13 +3811,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3837,7 +3856,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3860,7 +3879,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3882,11 +3901,11 @@ msgstr ""
 msgid "no"
 msgstr "no"
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr "ok (y/n)?"
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3902,11 +3921,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3932,27 +3951,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3960,19 +3979,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3980,25 +3999,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4010,7 +4029,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -4018,23 +4037,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4043,7 +4062,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr "Creazione del container in corso"
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4051,7 +4070,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4059,35 +4078,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4100,7 +4119,7 @@ msgstr "Creazione del container in corso"
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4112,11 +4131,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr "senza stato"
 
@@ -4128,20 +4147,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr "salvato alle %s"
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4149,7 +4168,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4161,23 +4180,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4198,11 +4217,11 @@ msgstr ""
 msgid "volume"
 msgstr "Colonne"
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr "si"
diff --git a/po/ja.po b/po/ja.po
index 9817d0bce7..9b89fe189b 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2019-05-18 08:49+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -125,7 +125,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -146,7 +146,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -163,7 +163,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -189,16 +189,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr "'%s' はサポートされないタイプのファイルです"
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -222,12 +222,12 @@ msgid "--refresh can only be used with containers"
 msgstr "--refresh はコンテナの場合のみ使えます"
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 #, fuzzy
 msgid "--target cannot be used with containers"
 msgstr "--refresh はコンテナの場合のみ使えます"
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -239,15 +239,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr "証明書を受け入れます"
 
@@ -259,19 +259,19 @@ msgstr "使用するHTTPのメソッド (デフォルト: GET)"
 msgid "Add devices to containers or profiles"
 msgstr "コンテナもしくはプロファイルにデバイスを追加します"
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr "新たにエイリアスを追加します"
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr "新たにリモートサーバを追加します"
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr "新たに信頼済みのクライアントを追加します"
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr "コンテナにプロファイルを追加します"
 
@@ -280,22 +280,22 @@ msgstr "コンテナにプロファイルを追加します"
 msgid "Address: %s"
 msgstr "MAC アドレス: %s"
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr "%s の管理者パスワード: "
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr "エイリアス %s は既に存在します"
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr "エイリアス %s は存在しません"
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr "エイリアスを指定してください"
 
@@ -303,7 +303,7 @@ msgstr "エイリアスを指定してください"
 msgid "Aliases:"
 msgstr "エイリアス:"
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr "アーキテクチャ: %s"
@@ -313,7 +313,7 @@ msgstr "アーキテクチャ: %s"
 msgid "Architecture: %v"
 msgstr "アーキテクチャ: %s"
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr "コンテナにプロファイルを割り当てます"
 
@@ -353,7 +353,7 @@ msgstr ""
 "このコマンドはコンテナのブートコンソールに接続できます。\n"
 "そしてそこから過去のログエントリを取り出すことができます。"
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "認証タイプ '%s' はサーバではサポートされていません"
@@ -368,7 +368,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "自動更新: %s"
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -381,7 +381,7 @@ msgstr "バックアップのエクスポートが成功しました!"
 msgid "Bad key/value pair: %s"
 msgstr "不適切なキー/値のペア: %s"
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -407,45 +407,45 @@ msgstr "--all とコンテナ名を両方同時に指定することはできま
 msgid "Brand: %v"
 msgstr "作成日時: %s"
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr "受信バイト数"
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "送信バイト数"
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr "CPU使用量:"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr "CPU使用量(秒)"
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr "CPU使用量:"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -459,7 +459,7 @@ msgstr "クライアントバージョン: %s\n"
 msgid "Cached: %s"
 msgstr "キャッシュ済: %s"
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 #, fuzzy
 msgid "Caches:"
 msgstr "キャッシュ済: %s"
@@ -482,12 +482,12 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr "標準入力から読み込めません: %s"
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 #, fuzzy
 msgid "Can't remove the default remote"
 msgstr "デフォルトのリモートは削除できません"
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr "--fast と --columns は同時に指定できません"
 
@@ -495,7 +495,7 @@ msgstr "--fast と --columns は同時に指定できません"
 msgid "Can't specify a different remote for rename"
 msgstr "リネームの場合は異なるリモートを指定できません"
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr "クラスタでない場合はカラムとして L は指定できません"
 
@@ -508,11 +508,11 @@ msgstr "再帰 (recursive) モードでは uid/gid/mode を指定できません
 msgid "Can't unset key '%s', it's not currently set"
 msgstr "キー '%s' が設定されていないので削除できません"
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr "使用する Candid ドメイン"
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -522,12 +522,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr "キャッシュ済: %s"
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "証明書のフィンガープリント: %s"
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr "クライアント証明書がサーバに格納されました: "
 
@@ -539,18 +539,18 @@ msgstr "クライアントバージョン: %s\n"
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr "クラスタメンバ名"
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr "クラスタリングが有効になりました"
 
@@ -578,7 +578,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr "新しいコンテナに適用するキー/値の設定"
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr "新しいプロジェクトに適用するキー/値の設定"
 
@@ -587,7 +587,7 @@ msgid "Config key/value to apply to the target container"
 msgstr "移動先のコンテナに適用するキー/値の設定"
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -648,7 +648,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr "プロファイルに継承されたデバイスをコピーし、設定キーを上書きします"
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr "プロファイルをコピーします"
 
@@ -678,21 +678,21 @@ msgstr "イメージのコピー中: %s"
 msgid "Copying the storage volume: %s"
 msgstr "ストレージボリュームのコピー中: %s"
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, fuzzy, c-format
 msgid "Core %d"
 msgstr "エラー: %v"
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 #, fuzzy
 msgid "Cores:"
 msgstr "エラー: %v"
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr "サーバ証明書格納用のディレクトリを作成できません"
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr "既存のイメージに対するエイリアスを作成します"
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "イメージからコンテナを作成します"
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr "新たにコンテナのファイルテンプレートを作成します"
 
@@ -741,11 +741,11 @@ msgstr "新たにカスタムストレージボリュームを作成します"
 msgid "Create new networks"
 msgstr "新たにネットワークを作成します"
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr "プロファイルを作成します"
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr "プロジェクトを作成します"
 
@@ -757,7 +757,7 @@ msgstr "ストレージプールを作成します"
 msgid "Create the container with no profiles applied"
 msgstr "プロファイルを適用しないコンテナを作成します"
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr "作成日時: %s"
@@ -771,21 +771,21 @@ msgstr "%s を作成中"
 msgid "Creating the container"
 msgstr "コンテナを作成中"
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr "圧縮アルゴリズムを指定します: 圧縮アルゴリズム名 or none"
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr "バックグラウンドの操作を削除します(キャンセルを試みます)"
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr "コンテナのファイルテンプレートを削除します"
 
@@ -813,7 +813,7 @@ msgstr "コンテナとスナップショットを削除します"
 msgid "Delete files in containers"
 msgstr "コンテナ内のファイルを削除します"
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr "イメージのエイリアスを削除します"
 
@@ -825,11 +825,11 @@ msgstr "イメージを削除します"
 msgid "Delete networks"
 msgstr "ネットワークを削除します"
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr "プロファイルを削除します"
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr "プロジェクトを削除します"
 
@@ -842,54 +842,54 @@ msgid "Delete storage volumes"
 msgstr "ストレージボリュームを削除します"
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr "説明"
 
@@ -929,7 +929,7 @@ msgstr "デバイス %s が %s から削除されました"
 msgid "Device already exists: %s"
 msgstr "デバイスは既に存在します: %s"
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, fuzzy, c-format
 msgid "Device: %s"
 msgstr "リモート名: %s"
@@ -953,26 +953,26 @@ msgstr "擬似端末の割り当てを無効にします"
 msgid "Disable stdin (reads from /dev/null)"
 msgstr "標準入力を無効にします (/dev/null から読み込みます)"
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr "ディスク使用量:"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr "ディスク使用量:"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr "ディスク使用量:"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr "ディスク使用量:"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 #, fuzzy
 msgid "Don't require user confirmation for using --force"
 msgstr "ユーザの確認を要求する"
@@ -986,15 +986,15 @@ msgstr "進捗情報を表示しません"
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr "コンテナのファイルテンプレートを編集します"
 
@@ -1018,11 +1018,11 @@ msgstr "イメージのプロパティを編集します"
 msgid "Edit network configurations as YAML"
 msgstr "ネットワーク設定をYAMLで編集します"
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr "プロファイル設定をYAMLで編集します"
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr "プロジェクト設定をYAMLで編集します"
 
@@ -1034,18 +1034,18 @@ msgstr "ストレージプールの設定をYAMLで編集します"
 msgid "Edit storage volume configurations as YAML"
 msgstr "ストレージボリュームの設定をYAMLで編集します"
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 "'%s' 中のカラムエントリが空です (カラムの指定に空文字列が指定されています)"
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 "クラスタリングで動作していないLXDインスタンス上でクラスタリングを有効にします"
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1077,7 +1077,7 @@ msgstr "環境変数を設定します (例: HOME=/home/foo)"
 msgid "Ephemeral container"
 msgstr "Ephemeral コンテナ"
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr "テンプレートファイル更新のエラー: %s"
@@ -1157,12 +1157,12 @@ msgstr "バックアップのエクスポート中: %s"
 msgid "Exporting the image: %s"
 msgstr "イメージのエクスポート中: %s"
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1193,7 +1193,7 @@ msgstr "パス %s にアクセスできませんでした: %s"
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr "Fast モード (--columns=nsacPt と同じ)"
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr "情報表示のフィルタリングはまだサポートされていません"
 
@@ -1206,7 +1206,7 @@ msgstr "証明書のフィンガープリント: %s"
 msgid "Force pseudo-terminal allocation"
 msgstr "強制的に擬似端末を割り当てます"
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr "degraded 状態であっても強制的にメンバを削除します"
 
@@ -1222,7 +1222,7 @@ msgstr "稼働中のコンテナを強制的に削除します"
 msgid "Force using the local unix socket"
 msgstr "強制的にローカルのUNIXソケットを使います"
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1246,34 +1246,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr "フォーマット (csv|json|table|yaml)"
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1281,7 +1281,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr "すべてのコマンドに対する man ページを作成します"
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr "クライアント証明書を生成します。1分ぐらいかかります..."
 
@@ -1301,11 +1301,11 @@ msgstr "コンテナもしくはサーバの設定値を取得します"
 msgid "Get values for network configuration keys"
 msgstr "ネットワークの設定値を取得します"
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr "プロファイルの設定値を取得します"
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr "プロジェクトの設定値を取得します"
 
@@ -1325,15 +1325,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr "ID"
 
@@ -1342,28 +1342,28 @@ msgstr "ID"
 msgid "ID: %d"
 msgstr "Pid: %d"
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr "IPV4"
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr "IPV6"
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1381,7 +1381,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "コンテナの状態を無視します"
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr "イメージは更新済みです。"
 
@@ -1393,7 +1393,7 @@ msgstr "イメージのコピーが成功しました!"
 msgid "Image exported successfully!"
 msgstr "イメージのエクスポートが成功しました!"
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr "イメージ名を指定してください"
 
@@ -1407,7 +1407,7 @@ msgstr "イメージ名を指定してください: %s"
 msgid "Image imported with fingerprint: %s"
 msgstr "イメージは以下のフィンガープリントでインポートされました: %s"
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr "イメージの更新が成功しました!"
 
@@ -1440,6 +1440,10 @@ msgstr "イメージをイメージストアにインポートします"
 msgid "Importing container: %s"
 msgstr "コンテナのインポート中: %s"
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr "入力するデータ"
@@ -1448,44 +1452,44 @@ msgstr "入力するデータ"
 msgid "Instance type"
 msgstr "インスタンスタイプ"
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr "不正な URL スキーム \"%s\" (\"%s\" 内)"
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr "不正な証明書です"
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "'%s' は正しくない設定項目 (key) です (%s 中の)"
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 "不正な設定項目のカラムフォーマットです (フィールド数が多すぎます): '%s'"
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr "不正なフォーマット %q"
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 "'%s' は最大幅の値として不正です (-1 もしくは 0 もしくは正の整数でなくてはなり"
 "ません) ('%s' 中の)"
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr "'%s' は最大幅の値として不正です (整数でなくてはなりません) ('%s' 中の)"
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1501,7 +1505,7 @@ msgstr "引数の数が不正です"
 msgid "Invalid path %s"
 msgstr "不正なパス %s"
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr "不正なプロトコル: %s"
@@ -1516,20 +1520,25 @@ msgstr "不正なソース %s"
 msgid "Invalid target %s"
 msgstr "不正な送り先 %s"
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr "IPアドレス:"
 
+#: lxc/info.go:203
+#, fuzzy, c-format
+msgid "IsSM: %s (%s)"
+msgstr "キャッシュ済: %s"
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr "最初にコピーした後も常にイメージを最新の状態に保つ"
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1537,7 +1546,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr "LXD - コマンドラインクライアント"
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr "LXD サーバはクラスタの一部ではありません"
 
@@ -1560,15 +1569,15 @@ msgstr "アーキテクチャ: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr "DHCP のリースを一覧表示します"
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr "エイリアスを一覧表示します"
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr "クラスタのメンバをすべて一覧表示します"
 
@@ -1580,7 +1589,7 @@ msgstr "利用可能なネットワークを一覧表示します"
 msgid "List available storage pools"
 msgstr "利用可能なストレージプールを一覧表示します"
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr "バックグラウンド操作を一覧表示します"
 
@@ -1588,7 +1597,7 @@ msgstr "バックグラウンド操作を一覧表示します"
 msgid "List container devices"
 msgstr "コンテナのデバイスを一覧表示します"
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr "コンテナのファイルテンプレートを一覧表示します"
 
@@ -1719,11 +1728,11 @@ msgstr ""
 "MAXWIDTH: カラムの最大幅 (結果がこれより長い場合は切り詰められます)\n"
 "          デフォルトは -1 (制限なし)。0 はカラムのヘッダサイズに制限します。"
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr "イメージのエイリアスを一覧表示します"
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1787,11 +1796,11 @@ msgstr ""
 "    s - サイズ\n"
 "    u - アップロード日"
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr "プロファイルを一覧表示します"
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr "プロジェクトを一覧表示します"
 
@@ -1799,28 +1808,28 @@ msgstr "プロジェクトを一覧表示します"
 msgid "List storage volumes"
 msgstr "ストレージボリュームを一覧表示します"
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr "利用可能なリモートサーバを一覧表示します"
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr "信頼済みクライアントを一覧表示します"
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr "バックグラウンド操作の一覧表示、表示、削除を行います"
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr "ロケーション: %s"
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr "ログ:"
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1829,11 +1838,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr "MAC アドレス: %s"
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, fuzzy, c-format
+msgid "MAD: %s (%s)"
+msgstr "キャッシュ済: %s"
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1854,11 +1868,11 @@ msgstr "イメージを public にする"
 msgid "Manage and attach containers to networks"
 msgstr "ネットワークを管理し、コンテナをネットワークに接続します"
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr "クラスタのメンバを管理します"
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr "コマンドのエイリアスを管理します"
 
@@ -1870,7 +1884,7 @@ msgstr "コンテナやサーバの設定を管理します"
 msgid "Manage container devices"
 msgstr "コンテナのデバイスを管理します"
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr "コンテナのファイルテンプレートを管理します"
 
@@ -1882,7 +1896,7 @@ msgstr "コンテナのメタデータファイルを管理します"
 msgid "Manage files in containers"
 msgstr "コンテナ内のファイルを管理します"
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr "イメージのエイリアスを管理します"
 
@@ -1922,11 +1936,11 @@ msgstr ""
 "イメージは全ハッシュ文字列、一意に定まるハッシュの短縮表現、(設定され\n"
 "ている場合は) エイリアスで参照できます。"
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr "プロファイルを管理します"
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr "プロジェクトを管理します"
 
@@ -1950,42 +1964,42 @@ msgstr ""
 "プレフィックスで指定しない限りは、ボリュームに対する操作はすべて \"カスタム"
 "\" (ユーザが作成した) ボリュームに対して行われます。"
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr "リモートサーバのリストを管理します"
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr "信頼済みのクライアントを管理します"
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr "メンバ %s が削除されました"
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr "メンバ名 %s を %s に変更しました"
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr "メモリ (現在値)"
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr "メモリ (ピーク)"
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr "メモリ消費量:"
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 #, fuzzy
 msgid "Memory:"
 msgstr "メモリ消費量:"
@@ -2003,13 +2017,13 @@ msgid "Minimum level for log messages"
 msgstr "表示するログメッセージの最小レベル"
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr "コンテナ名を指定する必要があります"
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr "コンテナ名を指定する必要があります"
 
@@ -2021,34 +2035,34 @@ msgstr "名前を指定する必要があります"
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr "ネットワーク名を指定する必要があります"
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr "ストレージプール名を指定する必要があります"
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr "プロファイル名を指定する必要があります"
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr "プロジェクト名を指定する必要があります"
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr "コピー元のプロファイル名を指定する必要があります"
 
@@ -2060,7 +2074,7 @@ msgstr "コピー元のボリューム名を指定する必要があります"
 msgid "Missing target directory"
 msgstr "コピー先のディレクトリを指定する必要があります"
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, fuzzy, c-format
 msgid "Model: %s"
 msgstr "アップロード日時: %s"
@@ -2099,7 +2113,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr "LXD サーバ内もしくはサーバ間でコンテナを移動します"
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr "プール間でストレージボリュームを移動します"
 
@@ -2120,31 +2134,31 @@ msgstr "ディレクトリからのインポートは root で実行する必要
 msgid "Must supply container name for: "
 msgstr "コンテナ名を指定する必要があります: "
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2157,12 +2171,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr "名前: %s"
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, fuzzy, c-format
 msgid "Name: %v"
 msgstr "名前: %s"
@@ -2182,7 +2196,7 @@ msgstr "ネットワーク %s を削除しました"
 msgid "Network %s pending on member %s"
 msgstr "ネットワーク %s はメンバ %s 上でペンディング状態です"
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr "ネットワーク名 %s を %s に変更しました"
@@ -2191,7 +2205,7 @@ msgstr "ネットワーク名 %s を %s に変更しました"
 msgid "Network name"
 msgstr "ネットワーク名:"
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr "ネットワーク使用状況:"
 
@@ -2228,7 +2242,7 @@ msgstr "コピー先のボリュームに対するストレージプールが指
 msgid "No value found in %q"
 msgstr "%q に設定する値が指定されていません"
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2237,11 +2251,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr "\"カスタム\" のボリュームのみがコンテナにアタッチできます"
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr "\"カスタム\" のボリュームのみがスナップショットを取得できます"
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr "simplestreams は https の URL のみサポートします"
 
@@ -2249,11 +2263,11 @@ msgstr "simplestreams は https の URL のみサポートします"
 msgid "Only https:// is supported for remote image import"
 msgstr "リモートイメージのインポートは https:// のみをサポートします"
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr "管理対象のネットワークのみ変更できます"
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr "バックグラウンド操作 %s を削除しました"
@@ -2271,39 +2285,39 @@ msgstr "ターミナルモードを上書きします (auto, interactive, non-in
 msgid "PCI address: %v"
 msgstr "MAC アドレス: %s"
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr "受信パケット"
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr "送信パケット"
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 #, fuzzy
 msgid "Partitions:"
 msgstr "オプション:"
@@ -2321,7 +2335,7 @@ msgstr "コンテナを一時停止します"
 msgid "Perform an incremental copy"
 msgstr "インクリメンタルコピーを実行します"
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr "Pid: %d"
@@ -2335,13 +2349,13 @@ msgstr "状態: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr "再度エディタを開くためには Enter キーを押します"
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr "再度エディタを起動するには Enter キーを押します"
 
@@ -2361,7 +2375,7 @@ msgstr "レスポンスをそのまま表示します"
 msgid "Print version number"
 msgstr "バージョン番号を表示します"
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr "プロセス数: %d"
@@ -2376,32 +2390,32 @@ msgstr "エイリアスの処理が失敗しました: %s\n"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr "プロファイル %s が %s に追加されました"
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr "プロファイル %s を作成しました"
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr "プロファイル %s を削除しました"
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr "プロファイル %s は %s に適用されていません"
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr "プロファイル %s が %s から削除されました"
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr "プロファイル名 %s を %s に変更しました"
@@ -2414,27 +2428,27 @@ msgstr "新しいコンテナに適用するプロファイル"
 msgid "Profile to apply to the target container"
 msgstr "移動先のコンテナに適用するプロファイル"
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr "プロファイル %s が %s に追加されました"
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr "プロファイル: %s"
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr "プロジェクト %s を作成しました"
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr "プロジェクト %s を削除しました"
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr "プロジェクト名 %s を %s に変更しました"
@@ -2443,7 +2457,7 @@ msgstr "プロジェクト名 %s を %s に変更しました"
 msgid "Properties:"
 msgstr "プロパティ:"
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr "Public なイメージサーバとして設定します"
 
@@ -2479,7 +2493,7 @@ msgstr "コンテナ内にファイルをコピーします"
 msgid "Pushing %s to %s: %%s"
 msgstr "ファイル %s をコンテナ %s 内にコピーします: %%s"
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2488,7 +2502,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr "再帰的にファイルを転送します"
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr "イメージを更新します"
 
@@ -2497,33 +2511,33 @@ msgstr "イメージを更新します"
 msgid "Refreshing container: %s"
 msgstr "コンテナの更新中: %s"
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr "イメージの更新中: %s"
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr "リモート %s は既に存在します"
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr "リモート %s は存在しません"
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "リモート %s は <%s> として存在します"
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr "リモート %s は static ですので変更できません"
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr "リモートの管理者パスワード"
 
@@ -2531,12 +2545,12 @@ msgstr "リモートの管理者パスワード"
 msgid "Remote operation canceled by user"
 msgstr "リモート操作がユーザによってキャンセルされました"
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr "リモート名: %s"
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, fuzzy, c-format
 msgid "Removable: %v"
 msgstr "リモート名: %s"
@@ -2546,11 +2560,11 @@ msgstr "リモート名: %s"
 msgid "Remove %s (yes/no): "
 msgstr "%s を消去しますか (yes/no): "
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr "クラスタからメンバを削除します"
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr "エイリアスを削除します"
 
@@ -2558,24 +2572,24 @@ msgstr "エイリアスを削除します"
 msgid "Remove container devices"
 msgstr "コンテナのデバイスを削除します"
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr "コンテナからプロファイルを削除します"
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr "リモートサーバを削除します"
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr "信頼済みクライアントを削除します"
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr "クラスタメンバの名前を変更します"
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr "エイリアスの名前を変更します"
 
@@ -2583,32 +2597,32 @@ msgstr "エイリアスの名前を変更します"
 msgid "Rename containers and snapshots"
 msgstr "コンテナまたはコンテナのスナップショットの名前を変更します"
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr "ネットワーク名を変更します"
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr "プロファイル名を変更します"
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr "プロジェクト名を変更します"
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr "リモートサーバ名を変更します"
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr "ストレージボリューム名を変更します"
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 "ストレージボリューム名とストレージボリュームのスナップショット名を変更します"
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr "ストレージボリューム名 \"%s\" を \"%s\" に変更しました"
@@ -2622,7 +2636,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr "ユーザの確認を要求する"
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr "リソース:"
 
@@ -2654,7 +2668,7 @@ msgstr ""
 "\n"
 "--stateful オプションを指定すると、コンテナの実行状態もリストアします。"
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr "スナップショットからストレージボリュームをリストアします"
 
@@ -2675,31 +2689,31 @@ msgstr "すべてのコンテナに対してコマンドを実行します"
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2707,19 +2721,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr "直接リクエスト (raw query) を LXD に送ります"
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr "サーバの認証タイプ (tls もしくは candid)"
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr "ユーザによりサーバ証明書が拒否されました"
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr "認証後、サーバが我々を信用していません"
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr "サーバのプロトコル (lxd or simplestreams)"
 
@@ -2755,11 +2769,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr "ネットワークの設定項目を設定します"
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2768,11 +2782,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr "プロファイルの設定項目を設定します"
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2781,11 +2795,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr "プロジェクトの設定項目を設定します"
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2794,11 +2808,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr "ストレージプールの設定項目を設定します"
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2807,11 +2821,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr "ストレージボリュームの設定項目を設定します"
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2820,7 +2834,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr "リモートの URL を設定します"
 
@@ -2856,15 +2870,15 @@ msgstr "コンテナもしくはサーバの設定を表示します"
 msgid "Show container or server information"
 msgstr "コンテナもしくはサーバの情報を表示します"
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr "コンテナのファイルテンプレートの内容を表示します"
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr "クラスタメンバの詳細を表示します"
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr "バックグラウンド操作の詳細を表示します"
 
@@ -2872,7 +2886,7 @@ msgstr "バックグラウンド操作の詳細を表示します"
 msgid "Show full device configuration for containers or profiles"
 msgstr "コンテナもしくはプロファイルのデバイス設定をすべて表示します"
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr "イメージのプロパティを表示します"
 
@@ -2884,27 +2898,27 @@ msgstr "全てのコマンドを表示します (主なコマンドだけでは
 msgid "Show local and remote versions"
 msgstr "ローカルとリモートのバージョンを表示します"
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr "ネットワークの設定を表示します"
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr "プロファイルの設定を表示します"
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr "プロジェクトの設定を表示します"
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr "ストレージプールの設定とリソースを表示します"
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr "ストレージボリュームの設定を表示します"
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr "ストレージボリュームの設定を表示する"
 
@@ -2912,7 +2926,7 @@ msgstr "ストレージボリュームの設定を表示する"
 msgid "Show the container's last 100 log lines?"
 msgstr "コンテナログの最後の 100 行を表示しますか?"
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr "デフォルトのリモートを表示します"
 
@@ -2924,7 +2938,7 @@ msgstr "拡張した設定を表示する"
 msgid "Show the resources available to the server"
 msgstr "サーバで使用可能なリソースを表示します"
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr "ストレージプールで利用可能なリソースを表示します"
 
@@ -2945,20 +2959,20 @@ msgstr "ストレージプールの情報を表示します"
 msgid "Size: %.2fMB"
 msgstr "サイズ: %.2fMB"
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, fuzzy, c-format
 msgid "Size: %s"
 msgstr "状態: %s"
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr "ストレージボリュームのスナップショットを取得します"
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr "スナップショット:"
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2986,7 +3000,7 @@ msgstr "%s を起動中"
 msgid "State: %s"
 msgstr "状態: %s"
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr "状態: %s"
@@ -3059,28 +3073,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr "Swap (現在値)"
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr "Swap (ピーク)"
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr "現在のプロジェクトを切り替えます"
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr "デフォルトのリモートを切り替えます"
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3157,7 +3171,7 @@ msgstr ""
 "publish 先にはイメージ名は指定できません。\"--alias\" オプションを使ってくだ"
 "さい。"
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3190,13 +3204,13 @@ msgstr ""
 "さい"
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 "--target オプションは、コピー先のリモートサーバがクラスタに属していなければな"
 "りません"
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3206,7 +3220,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr "イメージを転送中: %s"
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)"
 
@@ -3233,16 +3247,16 @@ msgstr "イメージを転送中: %s"
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr "更に情報を得るために `lxc info --show-log %s` を実行してみてください"
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, fuzzy, c-format
 msgid "Type: %s"
 msgstr "失効日時: %s"
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr "タイプ: ephemeral"
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr "タイプ: persistent"
 
@@ -3250,12 +3264,12 @@ msgstr "タイプ: persistent"
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3269,7 +3283,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr "テンポラリファイルを作成できません: %v"
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr "未知のカラム名の短縮形です '%c' ('%s' 中)"
@@ -3291,23 +3305,23 @@ msgstr "コンテナデバイスの設定を削除します"
 msgid "Unset container or server configuration keys"
 msgstr "コンテナもしくはサーバの設定を削除します"
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr "ネットワークの設定を削除します"
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr "プロファイルの設定を削除します"
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr "プロジェクトの設定を削除します"
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr "ストレージプールの設定を削除します"
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr "ストレージボリュームの設定を削除します"
 
@@ -3323,7 +3337,7 @@ msgstr ""
 "最適化された形でストレージドライバを使います (同様のプール上にのみリストアで"
 "きます)"
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, fuzzy, c-format
 msgid "Used: %v"
 msgstr "アップロード日時: %s"
@@ -3332,7 +3346,7 @@ msgstr "アップロード日時: %s"
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr "ユーザが削除操作を中断しました"
 
@@ -3343,12 +3357,12 @@ msgstr ""
 "ユーザからのシグナルを 3 度受信したので exit しました。リモート操作は実行し続"
 "けます"
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, fuzzy, c-format
 msgid "Vendor: %v"
 msgstr "エラー: %v"
@@ -3358,7 +3372,12 @@ msgstr "エラー: %v"
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, fuzzy, c-format
+msgid "Verb: %s (%s)"
+msgstr "キャッシュ済: %s"
+
+#: lxc/info.go:251
 #, fuzzy, c-format
 msgid "WWN: %s"
 msgstr "名前: %s"
@@ -3382,8 +3401,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr "コンテナの稼動状態のスナップショットを取得するかどうか"
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3403,15 +3422,15 @@ msgstr "--target オプションを使うときはコピー先のコンテナ名
 msgid "You must specify a source container name"
 msgstr "コピー元のコンテナ名を指定してください"
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3419,15 +3438,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr "alias"
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3451,7 +3470,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3471,7 +3490,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3479,11 +3498,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3499,27 +3518,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr "create [<remote>:]<project>"
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr "現在値"
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3544,7 +3563,7 @@ msgstr "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3556,11 +3575,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr "delete [<remote>:]<project>"
 
@@ -3600,7 +3619,7 @@ msgstr "ドライバ"
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3624,11 +3643,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3637,7 +3656,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr "restore [<remote>:]<container> <snapshot>"
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3654,7 +3673,7 @@ msgstr "エラー: %v"
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, fuzzy, c-format
 msgid "expires at %s"
 msgstr "失効日時: %s"
@@ -3691,11 +3710,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr "get [<remote>:]<project> <key>"
 
@@ -3703,7 +3722,7 @@ msgstr "get [<remote>:]<project> <key>"
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3750,12 +3769,12 @@ msgstr "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3763,11 +3782,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3779,11 +3798,11 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
@@ -3791,7 +3810,7 @@ msgstr ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    \"list\" コマンドを \"list -c ns46S\" で上書きします。"
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
@@ -3799,7 +3818,7 @@ msgstr ""
 "lxc alias remove my-list\n"
 "    \"my-list\" というエイリアスを削除します。"
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3981,7 +4000,7 @@ msgstr ""
 "lxc move <container>/<old snapshot name> <container>/<new snapshot name>\n"
 "    スナップショットをリネームします。"
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3989,7 +4008,7 @@ msgstr ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    上記のオペレーション UUID の詳細を表示します"
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -4010,7 +4029,7 @@ msgstr ""
 "lxc profile assign foo ''\n"
 "    \"foo\" からすべてのプロファイルを削除します。"
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
@@ -4018,7 +4037,7 @@ msgstr ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    profile.yaml の内容でプロファイルを更新します"
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -4072,7 +4091,7 @@ msgstr ""
 "lxc storage volume edit [<remote>:]<pool> <volume> < volume.yaml\n"
 "    pool.yaml の内容でストレージボリュームを更新します。"
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -4102,7 +4121,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4126,11 +4145,11 @@ msgstr "network"
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr "ok (y/n)?"
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr "operation"
 
@@ -4146,11 +4165,11 @@ msgstr "pause [<remote>:]<container> [[<remote>:]<container>...]"
 msgid "please use `lxc profile`"
 msgstr "`lxc profile` コマンドを使ってください"
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr "profile"
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -4182,27 +4201,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr "remote"
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr "remove <alias>"
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4210,19 +4229,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4230,15 +4249,15 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
@@ -4246,11 +4265,11 @@ msgstr ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr "rename [<remote>:]<project> <new-name>"
 
@@ -4262,7 +4281,7 @@ msgstr "restart [<remote>:]<container> [[<remote>:]<container>...]"
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr "restore [<remote>:]<container> <snapshot>"
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr "restore [<remote>:]<pool> <volume> <snapshot>"
 
@@ -4271,26 +4290,26 @@ msgstr "restore [<remote>:]<pool> <volume> <snapshot>"
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
@@ -4300,7 +4319,7 @@ msgstr "set [<remote>:]<project> <key> <value>"
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4308,7 +4327,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4316,35 +4335,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr "show [<remote>:]<pool> <volume>[/<snapshot>]"
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4357,7 +4376,7 @@ msgstr "restore [<remote>:]<container> <snapshot>"
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 
@@ -4369,11 +4388,11 @@ msgstr "使用量"
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr "start [<remote>:]<container> [[<remote>:]<container>...]"
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr "ステートフル"
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr "ステートレス"
 
@@ -4385,20 +4404,20 @@ msgstr "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr "switch <remote>"
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr "switch [<remote>:] <project>"
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr "%s に取得しました"
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4406,7 +4425,7 @@ msgstr ""
 msgid "total space"
 msgstr "総容量"
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4418,23 +4437,23 @@ msgstr "サーバに接続できません"
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr "unset [<remote>:]<project> <key>"
 
@@ -4454,11 +4473,11 @@ msgstr ""
 msgid "volume"
 msgstr "volume"
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/ko.po b/po/ko.po
index 1d70296c0e..5a7336f0c8 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/lxd.pot b/po/lxd.pot
index 3c0b2938c7..fe0452721e 100644
--- a/po/lxd.pot
+++ b/po/lxd.pot
@@ -7,7 +7,7 @@
 msgid   ""
 msgstr  "Project-Id-Version: lxd\n"
         "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-        "POT-Creation-Date: 2019-08-08 17:12-0400\n"
+        "POT-Creation-Date: 2019-08-09 15:51-0400\n"
         "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
         "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
         "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -116,7 +116,7 @@ msgid   "### This is a yaml representation of the network.\n"
         "### Note that only the configuration can be changed."
 msgstr  ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid   "### This is a yaml representation of the profile.\n"
         "### Any line starting with a '# will be ignored.\n"
         "###\n"
@@ -136,7 +136,7 @@ msgid   "### This is a yaml representation of the profile.\n"
         "### Note that the name is shown but cannot be changed"
 msgstr  ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid   "### This is a yaml representation of the project.\n"
         "### Any line starting with a '# will be ignored.\n"
         "###\n"
@@ -152,7 +152,7 @@ msgid   "### This is a yaml representation of the project.\n"
         "### Note that the name is shown but cannot be changed"
 msgstr  ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid   "%d (id: %d, online: %v)"
 msgstr  ""
@@ -177,16 +177,16 @@ msgstr  ""
 msgid   "'%s' isn't a supported file type"
 msgstr  ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid   "(none)"
 msgstr  ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid   "- Level %d (type: %s): %s"
 msgstr  ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid   "- Partition %d"
 msgstr  ""
@@ -208,11 +208,11 @@ msgstr  ""
 msgid   "--refresh can only be used with containers"
 msgstr  ""
 
-#: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637 lxc/info.go:407
+#: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637 lxc/info.go:423
 msgid   "--target cannot be used with containers"
 msgstr  ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid   "ALIAS"
 msgstr  ""
 
@@ -224,15 +224,15 @@ msgstr  ""
 msgid   "ARCH"
 msgstr  ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid   "ARCHITECTURE"
 msgstr  ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid   "AUTH TYPE"
 msgstr  ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid   "Accept certificate"
 msgstr  ""
 
@@ -244,19 +244,19 @@ msgstr  ""
 msgid   "Add devices to containers or profiles"
 msgstr  ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid   "Add new aliases"
 msgstr  ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid   "Add new remote servers"
 msgstr  ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid   "Add new trusted clients"
 msgstr  ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid   "Add profiles to containers"
 msgstr  ""
 
@@ -265,22 +265,22 @@ msgstr  ""
 msgid   "Address: %s"
 msgstr  ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid   "Admin password for %s: "
 msgstr  ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid   "Alias %s already exists"
 msgstr  ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid   "Alias %s doesn't exist"
 msgstr  ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid   "Alias name missing"
 msgstr  ""
 
@@ -288,7 +288,7 @@ msgstr  ""
 msgid   "Aliases:"
 msgstr  ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid   "Architecture: %s"
 msgstr  ""
@@ -298,7 +298,7 @@ msgstr  ""
 msgid   "Architecture: %v"
 msgstr  ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid   "Assign sets of profiles to containers"
 msgstr  ""
 
@@ -333,7 +333,7 @@ msgid   "Attach to container consoles\n"
         "as well as retrieve past log entries from it."
 msgstr  ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid   "Authentication type '%s' not supported by server"
 msgstr  ""
@@ -348,7 +348,7 @@ msgstr  ""
 msgid   "Auto update: %s"
 msgstr  ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid   "BASE IMAGE"
 msgstr  ""
 
@@ -361,7 +361,7 @@ msgstr  ""
 msgid   "Bad key/value pair: %s"
 msgstr  ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176 lxc/storage.go:122 lxc/storage_volume.go:504
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176 lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid   "Bad key=value pair: %s"
 msgstr  ""
@@ -385,45 +385,45 @@ msgstr  ""
 msgid   "Brand: %v"
 msgstr  ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid   "Bytes received"
 msgstr  ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid   "Bytes sent"
 msgstr  ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid   "CANCELABLE"
 msgstr  ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid   "COMMON NAME"
 msgstr  ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid   "CPU (%s):"
 msgstr  ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid   "CPU usage (in seconds)"
 msgstr  ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid   "CPU usage:"
 msgstr  ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid   "CPUs (%s):"
 msgstr  ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid   "CREATED"
 msgstr  ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid   "CREATED AT"
 msgstr  ""
 
@@ -437,7 +437,7 @@ msgstr  ""
 msgid   "Cached: %s"
 msgstr  ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid   "Caches:"
 msgstr  ""
 
@@ -458,11 +458,11 @@ msgstr  ""
 msgid   "Can't read from stdin: %s"
 msgstr  ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid   "Can't remove the default remote"
 msgstr  ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid   "Can't specify --fast with --columns"
 msgstr  ""
 
@@ -470,7 +470,7 @@ msgstr  ""
 msgid   "Can't specify a different remote for rename"
 msgstr  ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid   "Can't specify column L when not clustered"
 msgstr  ""
 
@@ -483,11 +483,11 @@ msgstr  ""
 msgid   "Can't unset key '%s', it's not currently set"
 msgstr  ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid   "Candid domain to use"
 msgstr  ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid   "Card %d:"
 msgstr  ""
@@ -497,12 +497,12 @@ msgstr  ""
 msgid   "Card: %s (%s)"
 msgstr  ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid   "Certificate fingerprint: %s"
 msgstr  ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid   "Client certificate stored at server: "
 msgstr  ""
 
@@ -511,11 +511,11 @@ msgstr  ""
 msgid   "Client version: %s\n"
 msgstr  ""
 
-#: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584 lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47 lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729 lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143 lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586 lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305 lxc/storage_volume.go:465 lxc/storage_volume.go:542 lxc/storage_volume.go:784 lxc/storage_volume.go:981 lxc/storage_volume.go:1145 lxc/storage_volume.go:1175 lxc/storage_volume.go:1281 lxc/storage_volume.go:1360 lxc/storage_volume.go:1453
+#: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584 lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47 lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729 lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145 lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587 lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305 lxc/storage_volume.go:465 lxc/storage_volume.go:542 lxc/storage_volume.go:784 lxc/storage_volume.go:981 lxc/storage_volume.go:1146 lxc/storage_volume.go:1176 lxc/storage_volume.go:1282 lxc/storage_volume.go:1361 lxc/storage_volume.go:1454
 msgid   "Cluster member name"
 msgstr  ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid   "Clustering enabled"
 msgstr  ""
 
@@ -538,7 +538,7 @@ msgstr  ""
 msgid   "Config key/value to apply to the new container"
 msgstr  ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid   "Config key/value to apply to the new project"
 msgstr  ""
 
@@ -546,7 +546,7 @@ msgstr  ""
 msgid   "Config key/value to apply to the target container"
 msgstr  ""
 
-#: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143 lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302 lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
+#: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143 lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid   "Config parsing error: %s"
 msgstr  ""
@@ -601,7 +601,7 @@ msgstr  ""
 msgid   "Copy profile inherited devices and override configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid   "Copy profiles"
 msgstr  ""
 
@@ -631,20 +631,20 @@ msgstr  ""
 msgid   "Copying the storage volume: %s"
 msgstr  ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid   "Core %d"
 msgstr  ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid   "Cores:"
 msgstr  ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid   "Could not create server cert dir"
 msgstr  ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid   "Create aliases for existing images"
 msgstr  ""
 
@@ -675,7 +675,7 @@ msgstr  ""
 msgid   "Create containers from images"
 msgstr  ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid   "Create new container file templates"
 msgstr  ""
 
@@ -687,11 +687,11 @@ msgstr  ""
 msgid   "Create new networks"
 msgstr  ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid   "Create profiles"
 msgstr  ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid   "Create projects"
 msgstr  ""
 
@@ -703,7 +703,7 @@ msgstr  ""
 msgid   "Create the container with no profiles applied"
 msgstr  ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid   "Created: %s"
 msgstr  ""
@@ -717,20 +717,20 @@ msgstr  ""
 msgid   "Creating the container"
 msgstr  ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid   "Current number of VFs: %d"
 msgstr  ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid   "DATABASE"
 msgstr  ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868 lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869 lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid   "DESCRIPTION"
 msgstr  ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid   "DRIVER"
 msgstr  ""
 
@@ -742,11 +742,11 @@ msgstr  ""
 msgid   "Define a compression algorithm: for image or none"
 msgstr  ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid   "Delete a background operation (will attempt to cancel)"
 msgstr  ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid   "Delete container file templates"
 msgstr  ""
 
@@ -758,7 +758,7 @@ msgstr  ""
 msgid   "Delete files in containers"
 msgstr  ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid   "Delete image aliases"
 msgstr  ""
 
@@ -770,11 +770,11 @@ msgstr  ""
 msgid   "Delete networks"
 msgstr  ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid   "Delete profiles"
 msgstr  ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid   "Delete projects"
 msgstr  ""
 
@@ -786,7 +786,7 @@ msgstr  ""
 msgid   "Delete storage volumes"
 msgstr  ""
 
-#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141 lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143 lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31 lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580 lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321 lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599 lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53 lxc/config_metadata.go:175 lxc/config_template.go:27 lxc/config_template.go:64 lxc/config_template.go:107 lxc/config_template.go:149 lxc/config_template.go:235 lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56 lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31 lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187 lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261 lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789 lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23 lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148 lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36 lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107 lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375 lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726 lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008 lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22 lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178 lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242 lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526 lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759 lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84 lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382 lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610 lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32 lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526 lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88 lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387 lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733 lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218 lxc/storage_volume.go:301 lxc/storage_volume.go:462 lxc/storage_volume.go:539 lxc/storage_volume.go:615 lxc/storage_volume.go:697 lxc/storage_volume.go:778 lxc/storage_volume.go:978 lxc/storage_volume.go:1069 lxc/storage_volume.go:1141 lxc/storage_volume.go:1172 lxc/storage_volume.go:1275 lxc/storage_volume.go:1351 lxc/storage_volume.go:1450 lxc/storage_volume.go:1481 lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143 lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145 lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31 lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580 lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321 lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599 lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53 lxc/config_metadata.go:175 lxc/config_template.go:28 lxc/config_template.go:65 lxc/config_template.go:108 lxc/config_template.go:150 lxc/config_template.go:236 lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57 lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31 lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187 lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261 lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789 lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24 lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149 lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36 lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107 lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375 lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726 lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010 lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23 lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180 lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243 lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527 lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761 lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85 lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383 lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612 lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33 lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528 lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88 lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387 lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734 lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218 lxc/storage_volume.go:301 lxc/storage_volume.go:462 lxc/storage_volume.go:539 lxc/storage_volume.go:615 lxc/storage_volume.go:697 lxc/storage_volume.go:778 lxc/storage_volume.go:978 lxc/storage_volume.go:1069 lxc/storage_volume.go:1142 lxc/storage_volume.go:1173 lxc/storage_volume.go:1276 lxc/storage_volume.go:1352 lxc/storage_volume.go:1451 lxc/storage_volume.go:1482 lxc/storage_volume.go:1553 lxc/version.go:22
 msgid   "Description"
 msgstr  ""
 
@@ -826,7 +826,7 @@ msgstr  ""
 msgid   "Device already exists: %s"
 msgstr  ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid   "Device: %s"
 msgstr  ""
@@ -847,24 +847,24 @@ msgstr  ""
 msgid   "Disable stdin (reads from /dev/null)"
 msgstr  ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid   "Disk %d:"
 msgstr  ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid   "Disk usage:"
 msgstr  ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid   "Disk:"
 msgstr  ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid   "Disks:"
 msgstr  ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid   "Don't require user confirmation for using --force"
 msgstr  ""
 
@@ -877,15 +877,15 @@ msgstr  ""
 msgid   "Driver: %v (%v)"
 msgstr  ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid   "EPHEMERAL"
 msgstr  ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid   "EXPIRY DATE"
 msgstr  ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid   "Edit container file templates"
 msgstr  ""
 
@@ -909,11 +909,11 @@ msgstr  ""
 msgid   "Edit network configurations as YAML"
 msgstr  ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid   "Edit profile configurations as YAML"
 msgstr  ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid   "Edit project configurations as YAML"
 msgstr  ""
 
@@ -925,16 +925,16 @@ msgstr  ""
 msgid   "Edit storage volume configurations as YAML"
 msgstr  ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid   "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr  ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid   "Enable clustering on a single non-clustered LXD instance"
 msgstr  ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid   "Enable clustering on a single non-clustered LXD instance\n"
         "\n"
         "  This command turns a non-clustered LXD instance into the first member of a new\n"
@@ -953,7 +953,7 @@ msgstr  ""
 msgid   "Ephemeral container"
 msgstr  ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid   "Error updating template file: %s"
 msgstr  ""
@@ -1016,11 +1016,11 @@ msgstr  ""
 msgid   "Exporting the image: %s"
 msgstr  ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid   "FILENAME"
 msgstr  ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939 lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939 lxc/image_alias.go:227
 msgid   "FINGERPRINT"
 msgstr  ""
 
@@ -1051,7 +1051,7 @@ msgstr  ""
 msgid   "Fast mode (same as --columns=nsacPt)"
 msgstr  ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid   "Filtering isn't supported yet"
 msgstr  ""
 
@@ -1064,7 +1064,7 @@ msgstr  ""
 msgid   "Force pseudo-terminal allocation"
 msgstr  ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid   "Force removing a member, even if degraded"
 msgstr  ""
 
@@ -1080,7 +1080,7 @@ msgstr  ""
 msgid   "Force using the local unix socket"
 msgstr  ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid   "Forcefully removing a server from the cluster should only be done as a last\n"
         "resort.\n"
@@ -1099,30 +1099,30 @@ msgid   "Forcefully removing a server from the cluster should only be done as a
         "Are you really sure you want to force removing %s? (yes/no): "
 msgstr  ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237 lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153 lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102 lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509 lxc/storage_volume.go:1071
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238 lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154 lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103 lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509 lxc/storage_volume.go:1071
 msgid   "Format (csv|json|table|yaml)"
 msgstr  ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid   "Free: %v"
 msgstr  ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid   "Frequency: %vMhz"
 msgstr  ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid   "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr  ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid   "GPU:"
 msgstr  ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid   "GPUs:"
 msgstr  ""
 
@@ -1130,7 +1130,7 @@ msgstr  ""
 msgid   "Generate manpages for all commands"
 msgstr  ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid   "Generating a client certificate. This may take a minute..."
 msgstr  ""
 
@@ -1150,11 +1150,11 @@ msgstr  ""
 msgid   "Get values for network configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid   "Get values for profile configuration keys"
 msgstr  ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid   "Get values for project configuration keys"
 msgstr  ""
 
@@ -1174,15 +1174,15 @@ msgstr  ""
 msgid   "Group ID to run the command as (default 0)"
 msgstr  ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid   "HOSTNAME"
 msgstr  ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid   "Hugepages:\n"
 msgstr  ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid   "ID"
 msgstr  ""
 
@@ -1191,28 +1191,28 @@ msgstr  ""
 msgid   "ID: %d"
 msgstr  ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid   "ID: %s"
 msgstr  ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid   "IMAGES"
 msgstr  ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid   "IP ADDRESS"
 msgstr  ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid   "IPV4"
 msgstr  ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid   "IPV6"
 msgstr  ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid   "ISSUE DATE"
 msgstr  ""
 
@@ -1228,7 +1228,7 @@ msgstr  ""
 msgid   "Ignore the container state"
 msgstr  ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid   "Image already up to date."
 msgstr  ""
 
@@ -1240,7 +1240,7 @@ msgstr  ""
 msgid   "Image exported successfully!"
 msgstr  ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid   "Image identifier missing"
 msgstr  ""
 
@@ -1254,7 +1254,7 @@ msgstr  ""
 msgid   "Image imported with fingerprint: %s"
 msgstr  ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid   "Image refreshed successfully!"
 msgstr  ""
 
@@ -1281,6 +1281,10 @@ msgstr  ""
 msgid   "Importing container: %s"
 msgstr  ""
 
+#: lxc/info.go:200
+msgid   "Infiniband:"
+msgstr  ""
+
 #: lxc/query.go:41
 msgid   "Input data"
 msgstr  ""
@@ -1289,41 +1293,41 @@ msgstr  ""
 msgid   "Instance type"
 msgstr  ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid   "Invalid URL scheme \"%s\" in \"%s\""
 msgstr  ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid   "Invalid certificate"
 msgstr  ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid   "Invalid config key '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid   "Invalid config key column format (too many fields): '%s'"
 msgstr  ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid   "Invalid format %q"
 msgstr  ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid   "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid   "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid   "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr  ""
@@ -1337,7 +1341,7 @@ msgstr  ""
 msgid   "Invalid path %s"
 msgstr  ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid   "Invalid protocol: %s"
 msgstr  ""
@@ -1352,19 +1356,24 @@ msgstr  ""
 msgid   "Invalid target %s"
 msgstr  ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid   "Ips:"
 msgstr  ""
 
+#: lxc/info.go:203
+#, c-format
+msgid   "IsSM: %s (%s)"
+msgstr  ""
+
 #: lxc/image.go:135
 msgid   "Keep the image up to date after initial copy"
 msgstr  ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid   "LAST USED AT"
 msgstr  ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162 lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164 lxc/storage_volume.go:1123
 msgid   "LOCATION"
 msgstr  ""
 
@@ -1372,7 +1381,7 @@ msgstr  ""
 msgid   "LXD - Command line client"
 msgstr  ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid   "LXD server isn't part of a cluster"
 msgstr  ""
 
@@ -1395,15 +1404,15 @@ msgstr  ""
 msgid   "Link speed: %dMbit/s (%s duplex)"
 msgstr  ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid   "List DHCP leases"
 msgstr  ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid   "List aliases"
 msgstr  ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid   "List all the cluster members"
 msgstr  ""
 
@@ -1415,7 +1424,7 @@ msgstr  ""
 msgid   "List available storage pools"
 msgstr  ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid   "List background operations"
 msgstr  ""
 
@@ -1423,7 +1432,7 @@ msgstr  ""
 msgid   "List container devices"
 msgstr  ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid   "List container file templates"
 msgstr  ""
 
@@ -1492,11 +1501,11 @@ msgid   "List containers\n"
         "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr  ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid   "List image aliases"
 msgstr  ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid   "List image aliases\n"
         "\n"
         "Filters may be part of the image hash or part of the image alias name.\n"
@@ -1531,11 +1540,11 @@ msgid   "List images\n"
         "    u - Upload date"
 msgstr  ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid   "List profiles"
 msgstr  ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid   "List projects"
 msgstr  ""
 
@@ -1543,28 +1552,28 @@ msgstr  ""
 msgid   "List storage volumes"
 msgstr  ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid   "List the available remotes"
 msgstr  ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid   "List trusted clients"
 msgstr  ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid   "List, show and delete background operations"
 msgstr  ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid   "Location: %s"
 msgstr  ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid   "Log:"
 msgstr  ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid   "MAC ADDRESS"
 msgstr  ""
 
@@ -1573,11 +1582,16 @@ msgstr  ""
 msgid   "MAC address: %s"
 msgstr  ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid   "MAD: %s (%s)"
+msgstr  ""
+
+#: lxc/network.go:868
 msgid   "MANAGED"
 msgstr  ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid   "MESSAGE"
 msgstr  ""
 
@@ -1598,11 +1612,11 @@ msgstr  ""
 msgid   "Manage and attach containers to networks"
 msgstr  ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid   "Manage cluster members"
 msgstr  ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid   "Manage command aliases"
 msgstr  ""
 
@@ -1614,7 +1628,7 @@ msgstr  ""
 msgid   "Manage container devices"
 msgstr  ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid   "Manage container file templates"
 msgstr  ""
 
@@ -1626,7 +1640,7 @@ msgstr  ""
 msgid   "Manage files in containers"
 msgstr  ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid   "Manage image aliases"
 msgstr  ""
 
@@ -1652,11 +1666,11 @@ msgid   "Manage images\n"
         "hash or alias name (if one is set)."
 msgstr  ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid   "Manage profiles"
 msgstr  ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid   "Manage projects"
 msgstr  ""
 
@@ -1674,42 +1688,42 @@ msgid   "Manage storage volumes\n"
         "Unless specified through a prefix, all volume operations affect \"custom\" (user created) volumes."
 msgstr  ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid   "Manage the list of remote servers"
 msgstr  ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid   "Manage trusted clients"
 msgstr  ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid   "Maximum number of VFs: %d"
 msgstr  ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid   "Member %s removed"
 msgstr  ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid   "Member %s renamed to %s"
 msgstr  ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid   "Memory (current)"
 msgstr  ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid   "Memory (peak)"
 msgstr  ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid   "Memory usage:"
 msgstr  ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid   "Memory:"
 msgstr  ""
 
@@ -1725,11 +1739,11 @@ msgstr  ""
 msgid   "Minimum level for log messages"
 msgstr  ""
 
-#: lxc/config_metadata.go:101 lxc/config_metadata.go:199 lxc/config_template.go:88 lxc/config_template.go:131 lxc/config_template.go:173 lxc/config_template.go:260 lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_metadata.go:101 lxc/config_metadata.go:199 lxc/config_template.go:89 lxc/config_template.go:132 lxc/config_template.go:174 lxc/config_template.go:261 lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid   "Missing container name"
 msgstr  ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid   "Missing container.name name"
 msgstr  ""
 
@@ -1737,23 +1751,23 @@ msgstr  ""
 msgid   "Missing name"
 msgstr  ""
 
-#: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399 lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752 lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037 lxc/network.go:1104
+#: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399 lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752 lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039 lxc/network.go:1106
 msgid   "Missing network name"
 msgstr  ""
 
-#: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413 lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163 lxc/storage_volume.go:242 lxc/storage_volume.go:487 lxc/storage_volume.go:563 lxc/storage_volume.go:639 lxc/storage_volume.go:721 lxc/storage_volume.go:820 lxc/storage_volume.go:1003 lxc/storage_volume.go:1094 lxc/storage_volume.go:1197 lxc/storage_volume.go:1302 lxc/storage_volume.go:1382 lxc/storage_volume.go:1504 lxc/storage_volume.go:1575
+#: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413 lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163 lxc/storage_volume.go:242 lxc/storage_volume.go:487 lxc/storage_volume.go:563 lxc/storage_volume.go:639 lxc/storage_volume.go:721 lxc/storage_volume.go:820 lxc/storage_volume.go:1003 lxc/storage_volume.go:1094 lxc/storage_volume.go:1198 lxc/storage_volume.go:1303 lxc/storage_volume.go:1383 lxc/storage_volume.go:1505 lxc/storage_volume.go:1576
 msgid   "Missing pool name"
 msgstr  ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550 lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551 lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid   "Missing profile name"
 msgstr  ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356 lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357 lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid   "Missing project name"
 msgstr  ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid   "Missing source profile name"
 msgstr  ""
 
@@ -1765,7 +1779,7 @@ msgstr  ""
 msgid   "Missing target directory"
 msgstr  ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid   "Model: %s"
 msgstr  ""
@@ -1797,7 +1811,7 @@ msgstr  ""
 msgid   "Move containers within or in between LXD instances"
 msgstr  ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid   "Move storage volumes between pools"
 msgstr  ""
 
@@ -1818,28 +1832,28 @@ msgstr  ""
 msgid   "Must supply container name for: "
 msgstr  ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617 lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556 lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619 lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557 lxc/storage_volume.go:1118
 msgid   "NAME"
 msgstr  ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid   "NIC:"
 msgstr  ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid   "NICs:"
 msgstr  ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426 lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427 lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid   "NO"
 msgstr  ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid   "NUMA node: %v"
 msgstr  ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid   "NUMA nodes:\n"
 msgstr  ""
 
@@ -1852,12 +1866,12 @@ msgstr  ""
 msgid   "NVRM Version: %v"
 msgstr  ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid   "Name: %s"
 msgstr  ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid   "Name: %v"
 msgstr  ""
@@ -1877,7 +1891,7 @@ msgstr  ""
 msgid   "Network %s pending on member %s"
 msgstr  ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid   "Network %s renamed to %s"
 msgstr  ""
@@ -1886,7 +1900,7 @@ msgstr  ""
 msgid   "Network name"
 msgstr  ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid   "Network usage:"
 msgstr  ""
 
@@ -1923,7 +1937,7 @@ msgstr  ""
 msgid   "No value found in %q"
 msgstr  ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid   "Node %d:\n"
 msgstr  ""
@@ -1932,11 +1946,11 @@ msgstr  ""
 msgid   "Only \"custom\" volumes can be attached to containers"
 msgstr  ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid   "Only \"custom\" volumes can be snapshotted"
 msgstr  ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid   "Only https URLs are supported for simplestreams"
 msgstr  ""
 
@@ -1944,11 +1958,11 @@ msgstr  ""
 msgid   "Only https:// is supported for remote image import"
 msgstr  ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid   "Only managed networks can be modified"
 msgstr  ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid   "Operation %s deleted"
 msgstr  ""
@@ -1966,39 +1980,39 @@ msgstr  ""
 msgid   "PCI address: %v"
 msgstr  ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid   "PERSISTENT"
 msgstr  ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid   "PID"
 msgstr  ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid   "PROCESSES"
 msgstr  ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid   "PROFILES"
 msgstr  ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid   "PROTOCOL"
 msgstr  ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid   "PUBLIC"
 msgstr  ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid   "Packets received"
 msgstr  ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid   "Packets sent"
 msgstr  ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid   "Partitions:"
 msgstr  ""
 
@@ -2015,7 +2029,7 @@ msgstr  ""
 msgid   "Perform an incremental copy"
 msgstr  ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid   "Pid: %d"
 msgstr  ""
@@ -2029,11 +2043,11 @@ msgstr  ""
 msgid   "Ports:"
 msgstr  ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid   "Press enter to open the editor again"
 msgstr  ""
 
-#: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144 lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144 lxc/config_template.go:203 lxc/image.go:406
 msgid   "Press enter to start the editor again"
 msgstr  ""
 
@@ -2053,7 +2067,7 @@ msgstr  ""
 msgid   "Print version number"
 msgstr  ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid   "Processes: %d"
 msgstr  ""
@@ -2068,32 +2082,32 @@ msgstr  ""
 msgid   "Product: %v (%v)"
 msgstr  ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid   "Profile %s added to %s"
 msgstr  ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid   "Profile %s created"
 msgstr  ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid   "Profile %s deleted"
 msgstr  ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid   "Profile %s isn't currently applied to %s"
 msgstr  ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid   "Profile %s removed from %s"
 msgstr  ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid   "Profile %s renamed to %s"
 msgstr  ""
@@ -2106,27 +2120,27 @@ msgstr  ""
 msgid   "Profile to apply to the target container"
 msgstr  ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid   "Profiles %s applied to %s"
 msgstr  ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid   "Profiles: %s"
 msgstr  ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid   "Project %s created"
 msgstr  ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid   "Project %s deleted"
 msgstr  ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid   "Project %s renamed to %s"
 msgstr  ""
@@ -2135,7 +2149,7 @@ msgstr  ""
 msgid   "Properties:"
 msgstr  ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid   "Public image server"
 msgstr  ""
 
@@ -2171,7 +2185,7 @@ msgstr  ""
 msgid   "Pushing %s to %s: %%s"
 msgstr  ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid   "Read-Only: %v"
 msgstr  ""
@@ -2180,7 +2194,7 @@ msgstr  ""
 msgid   "Recursively transfer files"
 msgstr  ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid   "Refresh images"
 msgstr  ""
 
@@ -2189,32 +2203,32 @@ msgstr  ""
 msgid   "Refreshing container: %s"
 msgstr  ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid   "Refreshing the image: %s"
 msgstr  ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid   "Remote %s already exists"
 msgstr  ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658 lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660 lxc/remote.go:698
 #, c-format
 msgid   "Remote %s doesn't exist"
 msgstr  ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid   "Remote %s exists as <%s>"
 msgstr  ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid   "Remote %s is static and cannot be modified"
 msgstr  ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid   "Remote admin password"
 msgstr  ""
 
@@ -2222,12 +2236,12 @@ msgstr  ""
 msgid   "Remote operation canceled by user"
 msgstr  ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid   "Remote: %s"
 msgstr  ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid   "Removable: %v"
 msgstr  ""
@@ -2237,11 +2251,11 @@ msgstr  ""
 msgid   "Remove %s (yes/no): "
 msgstr  ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid   "Remove a member from the cluster"
 msgstr  ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid   "Remove aliases"
 msgstr  ""
 
@@ -2249,23 +2263,23 @@ msgstr  ""
 msgid   "Remove container devices"
 msgstr  ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid   "Remove profiles from containers"
 msgstr  ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid   "Remove remotes"
 msgstr  ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid   "Remove trusted clients"
 msgstr  ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid   "Rename a cluster member"
 msgstr  ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243 lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245 lxc/image_alias.go:246
 msgid   "Rename aliases"
 msgstr  ""
 
@@ -2273,31 +2287,31 @@ msgstr  ""
 msgid   "Rename containers and snapshots"
 msgstr  ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid   "Rename networks"
 msgstr  ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid   "Rename profiles"
 msgstr  ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid   "Rename projects"
 msgstr  ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid   "Rename remotes"
 msgstr  ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid   "Rename storage volumes"
 msgstr  ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid   "Rename storage volumes and storage volume snapshots"
 msgstr  ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid   "Renamed storage volume from \"%s\" to \"%s\""
 msgstr  ""
@@ -2311,7 +2325,7 @@ msgstr  ""
 msgid   "Require user confirmation"
 msgstr  ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid   "Resources:"
 msgstr  ""
 
@@ -2335,7 +2349,7 @@ msgid   "Restore containers from snapshots\n"
         "If --stateful is passed, then the running state will be restored too."
 msgstr  ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid   "Restore storage volume snapshots"
 msgstr  ""
 
@@ -2356,31 +2370,31 @@ msgstr  ""
 msgid   "SIZE"
 msgstr  ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid   "SNAPSHOTS"
 msgstr  ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid   "SOURCE"
 msgstr  ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid   "SR-IOV information:"
 msgstr  ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid   "STATE"
 msgstr  ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid   "STATIC"
 msgstr  ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid   "STATUS"
 msgstr  ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid   "STORAGE POOL"
 msgstr  ""
 
@@ -2388,19 +2402,19 @@ msgstr  ""
 msgid   "Send a raw query to LXD"
 msgstr  ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid   "Server authentication type (tls or candid)"
 msgstr  ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid   "Server certificate NACKed by user"
 msgstr  ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid   "Server doesn't trust us after authentication"
 msgstr  ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid   "Server protocol (lxd or simplestreams)"
 msgstr  ""
 
@@ -2431,62 +2445,62 @@ msgid   "Set container or server configuration keys\n"
         "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr  ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid   "Set network configuration keys"
 msgstr  ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid   "Set network configuration keys\n"
         "\n"
         "For backward compatibility, a single configuration key may still be set with:\n"
         "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr  ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid   "Set profile configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid   "Set profile configuration keys\n"
         "\n"
         "For backward compatibility, a single configuration key may still be set with:\n"
         "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr  ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid   "Set project configuration keys"
 msgstr  ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid   "Set project configuration keys\n"
         "\n"
         "For backward compatibility, a single configuration key may still be set with:\n"
         "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr  ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid   "Set storage pool configuration keys"
 msgstr  ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid   "Set storage pool configuration keys\n"
         "\n"
         "For backward compatibility, a single configuration key may still be set with:\n"
         "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid   "Set storage volume configuration keys"
 msgstr  ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid   "Set storage volume configuration keys\n"
         "\n"
         "For backward compatibility, a single configuration key may still be set with:\n"
         "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr  ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid   "Set the URL for the remote"
 msgstr  ""
 
@@ -2522,15 +2536,15 @@ msgstr  ""
 msgid   "Show container or server information"
 msgstr  ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid   "Show content of container file templates"
 msgstr  ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid   "Show details of a cluster member"
 msgstr  ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid   "Show details on a background operation"
 msgstr  ""
 
@@ -2538,7 +2552,7 @@ msgstr  ""
 msgid   "Show full device configuration for containers or profiles"
 msgstr  ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid   "Show image properties"
 msgstr  ""
 
@@ -2550,27 +2564,27 @@ msgstr  ""
 msgid   "Show local and remote versions"
 msgstr  ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid   "Show network configurations"
 msgstr  ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid   "Show profile configurations"
 msgstr  ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid   "Show project options"
 msgstr  ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid   "Show storage pool configurations and resources"
 msgstr  ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid   "Show storage volum configurations"
 msgstr  ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid   "Show storage volume configurations"
 msgstr  ""
 
@@ -2578,7 +2592,7 @@ msgstr  ""
 msgid   "Show the container's last 100 log lines?"
 msgstr  ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid   "Show the default remote"
 msgstr  ""
 
@@ -2590,7 +2604,7 @@ msgstr  ""
 msgid   "Show the resources available to the server"
 msgstr  ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid   "Show the resources available to the storage pool"
 msgstr  ""
 
@@ -2611,20 +2625,20 @@ msgstr  ""
 msgid   "Size: %.2fMB"
 msgstr  ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid   "Size: %s"
 msgstr  ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid   "Snapshot storage volumes"
 msgstr  ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid   "Snapshots:"
 msgstr  ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid   "Socket %d:"
 msgstr  ""
@@ -2652,7 +2666,7 @@ msgstr  ""
 msgid   "State: %s"
 msgstr  ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid   "Status: %s"
 msgstr  ""
@@ -2725,27 +2739,27 @@ msgstr  ""
 msgid   "Supported ports: %s"
 msgstr  ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid   "Swap (current)"
 msgstr  ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid   "Swap (peak)"
 msgstr  ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid   "Switch the current project"
 msgstr  ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid   "Switch the default remote"
 msgstr  ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid   "TARGET"
 msgstr  ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156 lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158 lxc/storage_volume.go:1117
 msgid   "TYPE"
 msgstr  ""
 
@@ -2811,7 +2825,7 @@ msgstr  ""
 msgid   "There is no \"image name\".  Did you want an alias?"
 msgstr  ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid   "Threads:"
 msgstr  ""
 
@@ -2839,11 +2853,11 @@ msgstr  ""
 msgid   "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr  ""
 
-#: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617 lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617 lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid   "To use --target, the destination remote must be a cluster"
 msgstr  ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid   "Total: %v"
 msgstr  ""
@@ -2853,7 +2867,7 @@ msgstr  ""
 msgid   "Transceiver type: %s"
 msgstr  ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid   "Transfer mode, one of pull (default), push or relay"
 msgstr  ""
 
@@ -2880,16 +2894,16 @@ msgstr  ""
 msgid   "Try `lxc info --show-log %s` for more info"
 msgstr  ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid   "Type: %s"
 msgstr  ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid   "Type: ephemeral"
 msgstr  ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid   "Type: persistent"
 msgstr  ""
 
@@ -2897,11 +2911,11 @@ msgstr  ""
 msgid   "UPLOAD DATE"
 msgstr  ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid   "URL"
 msgstr  ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565 lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566 lxc/storage_volume.go:1120
 msgid   "USED BY"
 msgstr  ""
 
@@ -2915,7 +2929,7 @@ msgstr  ""
 msgid   "Unable to create a temporary file: %v"
 msgstr  ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid   "Unknown column shorthand char '%c' in '%s'"
 msgstr  ""
@@ -2937,23 +2951,23 @@ msgstr  ""
 msgid   "Unset container or server configuration keys"
 msgstr  ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid   "Unset network configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid   "Unset profile configuration keys"
 msgstr  ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid   "Unset project configuration keys"
 msgstr  ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid   "Unset storage pool configuration keys"
 msgstr  ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid   "Unset storage volume configuration keys"
 msgstr  ""
 
@@ -2966,7 +2980,7 @@ msgstr  ""
 msgid   "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr  ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid   "Used: %v"
 msgstr  ""
@@ -2975,7 +2989,7 @@ msgstr  ""
 msgid   "User ID to run the command as (default 0)"
 msgstr  ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid   "User aborted delete operation"
 msgstr  ""
 
@@ -2983,12 +2997,12 @@ msgstr  ""
 msgid   "User signaled us three times, exiting. The remote operation will keep running"
 msgstr  ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid   "VFs: %d"
 msgstr  ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid   "Vendor: %v"
 msgstr  ""
@@ -2998,7 +3012,12 @@ msgstr  ""
 msgid   "Vendor: %v (%v)"
 msgstr  ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid   "Verb: %s (%s)"
+msgstr  ""
+
+#: lxc/info.go:251
 #, c-format
 msgid   "WWN: %s"
 msgstr  ""
@@ -3019,7 +3038,7 @@ msgstr  ""
 msgid   "Whether or not to snapshot the container's running state"
 msgstr  ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428 lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429 lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid   "YES"
 msgstr  ""
 
@@ -3039,15 +3058,15 @@ msgstr  ""
 msgid   "You must specify a source container name"
 msgstr  ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid   "add <alias> <target>"
 msgstr  ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid   "add [<remote>:] <cert>"
 msgstr  ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid   "add [<remote>:]<container> <profile>"
 msgstr  ""
 
@@ -3055,15 +3074,15 @@ msgstr  ""
 msgid   "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr  ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid   "add [<remote>] <IP|FQDN|URL>"
 msgstr  ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid   "alias"
 msgstr  ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid   "assign [<remote>:]<container> <profiles>"
 msgstr  ""
 
@@ -3083,7 +3102,7 @@ msgstr  ""
 msgid   "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface name>]"
 msgstr  ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid   "cluster"
 msgstr  ""
 
@@ -3103,7 +3122,7 @@ msgstr  ""
 msgid   "copy [<remote>:]<image> <remote>:"
 msgstr  ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid   "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr  ""
 
@@ -3111,11 +3130,11 @@ msgstr  ""
 msgid   "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr  ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid   "create [<remote>:]<alias> <fingerprint>"
 msgstr  ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid   "create [<remote>:]<container> <template>"
 msgstr  ""
 
@@ -3131,27 +3150,27 @@ msgstr  ""
 msgid   "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr  ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid   "create [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid   "create [<remote>:]<project>"
 msgstr  ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid   "current"
 msgstr  ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid   "default"
 msgstr  ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid   "delete [<remote>:]<alias>"
 msgstr  ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid   "delete [<remote>:]<container> <template>"
 msgstr  ""
 
@@ -3171,7 +3190,7 @@ msgstr  ""
 msgid   "delete [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid   "delete [<remote>:]<operation>"
 msgstr  ""
 
@@ -3183,11 +3202,11 @@ msgstr  ""
 msgid   "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid   "delete [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid   "delete [<remote>:]<project>"
 msgstr  ""
 
@@ -3227,7 +3246,7 @@ msgstr  ""
 msgid   "edit [<remote>:]<container>"
 msgstr  ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid   "edit [<remote>:]<container> <template>"
 msgstr  ""
 
@@ -3251,11 +3270,11 @@ msgstr  ""
 msgid   "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid   "edit [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid   "edit [<remote>:]<project>"
 msgstr  ""
 
@@ -3263,7 +3282,7 @@ msgstr  ""
 msgid   "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr  ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid   "enable [<remote>:] <name>"
 msgstr  ""
 
@@ -3280,7 +3299,7 @@ msgstr  ""
 msgid   "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr  ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid   "expires at %s"
 msgstr  ""
@@ -3313,11 +3332,11 @@ msgstr  ""
 msgid   "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr  ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid   "get [<remote>:]<profile> <key>"
 msgstr  ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid   "get [<remote>:]<project> <key>"
 msgstr  ""
 
@@ -3325,7 +3344,7 @@ msgstr  ""
 msgid   "get [<remote>:][<container>] <key>"
 msgstr  ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid   "get-default"
 msgstr  ""
 
@@ -3369,11 +3388,11 @@ msgstr  ""
 msgid   "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr  ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid   "list"
 msgstr  ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803 lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803 lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid   "list [<remote>:]"
 msgstr  ""
 
@@ -3381,11 +3400,11 @@ msgstr  ""
 msgid   "list [<remote>:] [<filter>...]"
 msgstr  ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid   "list [<remote>:] [<filters>...]"
 msgstr  ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid   "list [<remote>:]<container>"
 msgstr  ""
 
@@ -3397,21 +3416,21 @@ msgstr  ""
 msgid   "list [<remote>:]<pool>"
 msgstr  ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid   "list-leases [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid   "lxc alias add list \"list -c ns46S\"\n"
         "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr  ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid   "lxc alias remove my-list\n"
         "    Remove the \"my-list\" alias."
 msgstr  ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid   "lxc alias rename list my-list\n"
         "    Rename existing alias \"list\" to \"my-list\"."
 msgstr  ""
@@ -3512,12 +3531,12 @@ msgid   "lxc move [<remote>:]<source container> [<remote>:][<destination contain
         "    Rename a snapshot."
 msgstr  ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid   "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
         "    Show details on that operation UUID"
 msgstr  ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid   "lxc profile assign foo default,bar\n"
         "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
         "\n"
@@ -3528,12 +3547,12 @@ msgid   "lxc profile assign foo default,bar\n"
         "    Remove all profile from \"foo\""
 msgstr  ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid   "lxc profile edit <profile> < profile.yaml\n"
         "    Update a profile using the content of profile.yaml"
 msgstr  ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid   "lxc project edit <project> < project.yaml\n"
         "    Update a project using the content of project.yaml"
 msgstr  ""
@@ -3566,7 +3585,7 @@ msgid   "lxc storage volume edit [<remote>:]<pool> <volume> < volume.yaml\n"
         "    Update a storage volume using the content of pool.yaml."
 msgstr  ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid   "lxc storage volume show default data\n"
         "    Will show the properties of a custom volume called \"data\" in the \"default\" pool.\n"
         "\n"
@@ -3586,7 +3605,7 @@ msgstr  ""
 msgid   "monitor [<remote>:]"
 msgstr  ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid   "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr  ""
 
@@ -3606,11 +3625,11 @@ msgstr  ""
 msgid   "no"
 msgstr  ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid   "ok (y/n)?"
 msgstr  ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid   "operation"
 msgstr  ""
 
@@ -3626,11 +3645,11 @@ msgstr  ""
 msgid   "please use `lxc profile`"
 msgstr  ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid   "profile"
 msgstr  ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid   "project"
 msgstr  ""
 
@@ -3650,27 +3669,27 @@ msgstr  ""
 msgid   "query [<remote>:]<API path>"
 msgstr  ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid   "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr  ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid   "remote"
 msgstr  ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid   "remove <alias>"
 msgstr  ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid   "remove <remote>"
 msgstr  ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid   "remove [<remote>:] <hostname|fingerprint>"
 msgstr  ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid   "remove [<remote>:]<container> <profile>"
 msgstr  ""
 
@@ -3678,19 +3697,19 @@ msgstr  ""
 msgid   "remove [<remote>:]<container|profile> <name>..."
 msgstr  ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid   "remove [<remote>:]<member>"
 msgstr  ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid   "rename <old alias> <new alias>"
 msgstr  ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid   "rename <remote> <new-name>"
 msgstr  ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid   "rename [<remote>:]<alias> <new-name>"
 msgstr  ""
 
@@ -3698,23 +3717,23 @@ msgstr  ""
 msgid   "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid   "rename [<remote>:]<member> <new-name>"
 msgstr  ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid   "rename [<remote>:]<network> <new-name>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid   "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new snapshot name>]"
 msgstr  ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid   "rename [<remote>:]<profile> <new-name>"
 msgstr  ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid   "rename [<remote>:]<project> <new-name>"
 msgstr  ""
 
@@ -3726,7 +3745,7 @@ msgstr  ""
 msgid   "restore [<remote>:]<container> <snapshot>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid   "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr  ""
 
@@ -3734,23 +3753,23 @@ msgstr  ""
 msgid   "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr  ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid   "set [<remote>:]<network> <key>=<value>..."
 msgstr  ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid   "set [<remote>:]<pool> <key> <value>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid   "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr  ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid   "set [<remote>:]<profile> <key><value>..."
 msgstr  ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid   "set [<remote>:]<project> <key>=<value>..."
 msgstr  ""
 
@@ -3758,7 +3777,7 @@ msgstr  ""
 msgid   "set [<remote>:][<container>] <key>=<value>..."
 msgstr  ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid   "set-url <remote> <URL>"
 msgstr  ""
 
@@ -3766,7 +3785,7 @@ msgstr  ""
 msgid   "show [<remote>:]<container>"
 msgstr  ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid   "show [<remote>:]<container> <template>"
 msgstr  ""
 
@@ -3774,35 +3793,35 @@ msgstr  ""
 msgid   "show [<remote>:]<container|profile>"
 msgstr  ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid   "show [<remote>:]<image>"
 msgstr  ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid   "show [<remote>:]<member>"
 msgstr  ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid   "show [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid   "show [<remote>:]<operation>"
 msgstr  ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid   "show [<remote>:]<pool>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid   "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid   "show [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid   "show [<remote>:]<project>"
 msgstr  ""
 
@@ -3814,7 +3833,7 @@ msgstr  ""
 msgid   "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr  ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid   "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr  ""
 
@@ -3826,11 +3845,11 @@ msgstr  ""
 msgid   "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr  ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid   "stateful"
 msgstr  ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid   "stateless"
 msgstr  ""
 
@@ -3842,20 +3861,20 @@ msgstr  ""
 msgid   "storage"
 msgstr  ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid   "switch <remote>"
 msgstr  ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid   "switch [<remote>:] <project>"
 msgstr  ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid   "taken at %s"
 msgstr  ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid   "template"
 msgstr  ""
 
@@ -3863,7 +3882,7 @@ msgstr  ""
 msgid   "total space"
 msgstr  ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid   "trust"
 msgstr  ""
 
@@ -3875,23 +3894,23 @@ msgstr  ""
 msgid   "unset [<remote>:]<container|profile> <device> <key>"
 msgstr  ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid   "unset [<remote>:]<network> <key>"
 msgstr  ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid   "unset [<remote>:]<pool> <key>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid   "unset [<remote>:]<pool> <volume> <key>"
 msgstr  ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid   "unset [<remote>:]<profile> <key>"
 msgstr  ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid   "unset [<remote>:]<project> <key>"
 msgstr  ""
 
@@ -3911,11 +3930,11 @@ msgstr  ""
 msgid   "volume"
 msgstr  ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid   "y"
 msgstr  ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:995
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:995
 msgid   "yes"
 msgstr  ""
 
diff --git a/po/nb_NO.po b/po/nb_NO.po
index b118d6b175..12db59bcca 100644
--- a/po/nb_NO.po
+++ b/po/nb_NO.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/nl.po b/po/nl.po
index a300554581..e9d0c265d0 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2019-02-26 09:18+0000\n"
 "Last-Translator: Heimen Stoffels <vistausss at outlook.com>\n"
 "Language-Team: Dutch <https://hosted.weblate.org/projects/linux-containers/"
@@ -171,7 +171,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -192,7 +192,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -209,7 +209,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -234,16 +234,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr "(geen)"
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -266,11 +266,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -282,15 +282,15 @@ msgstr ""
 msgid "ARCH"
 msgstr "ARCHITECTUUR"
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr "ARCHITECTUUR"
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -302,19 +302,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -323,22 +323,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -346,7 +346,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -356,7 +356,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -392,7 +392,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -407,7 +407,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -420,7 +420,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -445,45 +445,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -497,7 +497,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -518,11 +518,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -530,7 +530,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -557,12 +557,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -574,18 +574,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -609,7 +609,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -618,7 +618,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -675,7 +675,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -705,20 +705,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -750,7 +750,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -778,7 +778,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -792,21 +792,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -818,11 +818,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -834,7 +834,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -846,11 +846,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -863,54 +863,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -950,7 +950,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -971,24 +971,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1001,15 +1001,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1033,11 +1033,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1049,16 +1049,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1081,7 +1081,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1147,12 +1147,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1183,7 +1183,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1196,7 +1196,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1212,7 +1212,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1236,34 +1236,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1271,7 +1271,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1291,11 +1291,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1315,15 +1315,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1332,28 +1332,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1371,7 +1371,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1383,7 +1383,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1397,7 +1397,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1425,6 +1425,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1433,41 +1437,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1482,7 +1486,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1497,20 +1501,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1518,7 +1527,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1541,15 +1550,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1561,7 +1570,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1569,7 +1578,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1642,11 +1651,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1683,11 +1692,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1695,28 +1704,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1725,11 +1734,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1750,11 +1764,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1766,7 +1780,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1778,7 +1792,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1805,11 +1819,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1829,42 +1843,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1881,13 +1895,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1899,34 +1913,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1938,7 +1952,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1972,7 +1986,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1993,31 +2007,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2030,12 +2044,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2055,7 +2069,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2064,7 +2078,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2101,7 +2115,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2110,11 +2124,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2122,11 +2136,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2144,39 +2158,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2193,7 +2207,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2207,13 +2221,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2233,7 +2247,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2248,32 +2262,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2286,27 +2300,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2315,7 +2329,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2351,7 +2365,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2360,7 +2374,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2369,33 +2383,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2403,12 +2417,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2418,11 +2432,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2430,24 +2444,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2455,31 +2469,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2493,7 +2507,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2519,7 +2533,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2540,31 +2554,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2572,19 +2586,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2620,11 +2634,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2633,11 +2647,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2646,11 +2660,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2659,11 +2673,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2672,11 +2686,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2685,7 +2699,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2721,15 +2735,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2737,7 +2751,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2749,27 +2763,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2777,7 +2791,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2789,7 +2803,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2810,20 +2824,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2851,7 +2865,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2924,28 +2938,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3015,7 +3029,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3044,11 +3058,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3058,7 +3072,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3085,16 +3099,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3102,12 +3116,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3121,7 +3135,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3143,23 +3157,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3173,7 +3187,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3182,7 +3196,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3191,12 +3205,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3206,7 +3220,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3229,8 +3248,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3250,15 +3269,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3266,15 +3285,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3298,7 +3317,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3318,7 +3337,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3326,11 +3345,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3346,27 +3365,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3388,7 +3407,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3400,11 +3419,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3444,7 +3463,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3468,11 +3487,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3480,7 +3499,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3497,7 +3516,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3532,11 +3551,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3544,7 +3563,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3590,12 +3609,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3603,11 +3622,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3619,23 +3638,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3755,13 +3774,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3773,13 +3792,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3818,7 +3837,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3841,7 +3860,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3863,11 +3882,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3883,11 +3902,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3913,27 +3932,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3941,19 +3960,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3961,25 +3980,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3991,7 +4010,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3999,23 +4018,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4023,7 +4042,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4031,7 +4050,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4039,35 +4058,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4091,11 +4110,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4107,20 +4126,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4128,7 +4147,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4140,23 +4159,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4176,11 +4195,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/pa.po b/po/pa.po
index 8213c0d0a7..3dcd0a4f84 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 99dcbd6030..d64fe59ec9 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2018-09-08 19:22+0000\n"
 "Last-Translator: m4sk1n <me at m4sk.in>\n"
 "Language-Team: Polish <https://hosted.weblate.org/projects/linux-containers/"
@@ -153,7 +153,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -174,7 +174,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -209,7 +209,7 @@ msgstr ""
 "###\n"
 "### Nazwa jest widoczna, ale nie może zostać zmieniona"
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -234,16 +234,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -266,11 +266,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -282,15 +282,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -302,19 +302,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -323,22 +323,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -346,7 +346,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -356,7 +356,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -392,7 +392,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -407,7 +407,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -420,7 +420,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -445,45 +445,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -497,7 +497,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -518,11 +518,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -530,7 +530,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -557,12 +557,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -574,18 +574,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -609,7 +609,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -618,7 +618,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -675,7 +675,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -705,20 +705,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -750,7 +750,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -778,7 +778,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -792,21 +792,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -818,11 +818,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -834,7 +834,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -846,11 +846,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -863,54 +863,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -950,7 +950,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -971,24 +971,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1001,15 +1001,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1033,11 +1033,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1049,16 +1049,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1081,7 +1081,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1147,12 +1147,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1183,7 +1183,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1196,7 +1196,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1212,7 +1212,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1236,34 +1236,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1271,7 +1271,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1291,11 +1291,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1315,15 +1315,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1332,28 +1332,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1371,7 +1371,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1383,7 +1383,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1397,7 +1397,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1425,6 +1425,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1433,41 +1437,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1482,7 +1486,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1497,20 +1501,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1518,7 +1527,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1541,15 +1550,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1561,7 +1570,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1569,7 +1578,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1642,11 +1651,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1683,11 +1692,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1695,28 +1704,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1725,11 +1734,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1750,11 +1764,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1766,7 +1780,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1778,7 +1792,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1805,11 +1819,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1829,42 +1843,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1881,13 +1895,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1899,34 +1913,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1938,7 +1952,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1972,7 +1986,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1993,31 +2007,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2030,12 +2044,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2055,7 +2069,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2064,7 +2078,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2101,7 +2115,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2110,11 +2124,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2122,11 +2136,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2144,39 +2158,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2193,7 +2207,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2207,13 +2221,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2233,7 +2247,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2248,32 +2262,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2286,27 +2300,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2315,7 +2329,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2351,7 +2365,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2360,7 +2374,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2369,33 +2383,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2403,12 +2417,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2418,11 +2432,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2430,24 +2444,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2455,31 +2469,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2493,7 +2507,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2519,7 +2533,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2540,31 +2554,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2572,19 +2586,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2620,11 +2634,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2633,11 +2647,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2646,11 +2660,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2659,11 +2673,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2672,11 +2686,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2685,7 +2699,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2721,15 +2735,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2737,7 +2751,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2749,27 +2763,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2777,7 +2791,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2789,7 +2803,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2810,20 +2824,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2851,7 +2865,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2924,28 +2938,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3015,7 +3029,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3044,11 +3058,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3058,7 +3072,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3085,16 +3099,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3102,12 +3116,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3121,7 +3135,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3143,23 +3157,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3173,7 +3187,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3182,7 +3196,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3191,12 +3205,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3206,7 +3220,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3229,8 +3248,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3250,15 +3269,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3266,15 +3285,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3298,7 +3317,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3318,7 +3337,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3326,11 +3345,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3346,27 +3365,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3388,7 +3407,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3400,11 +3419,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3444,7 +3463,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3468,11 +3487,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3480,7 +3499,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3497,7 +3516,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3532,11 +3551,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3544,7 +3563,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3590,12 +3609,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3603,11 +3622,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3619,23 +3638,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3755,13 +3774,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3773,13 +3792,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3818,7 +3837,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3841,7 +3860,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3863,11 +3882,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3883,11 +3902,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3913,27 +3932,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3941,19 +3960,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3961,25 +3980,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3991,7 +4010,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3999,23 +4018,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4023,7 +4042,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4031,7 +4050,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4039,35 +4058,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4091,11 +4110,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4107,20 +4126,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4128,7 +4147,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4140,23 +4159,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4176,11 +4195,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 48834d88c1..0aeec09d84 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2019-08-08 18:08+0000\n"
 "Last-Translator: Tiago A. Reul <tiago at reul.space>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -209,7 +209,7 @@ msgstr ""
 "###\n"
 "### Note que o nome é exibido, porém não pode ser alterado."
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -247,7 +247,7 @@ msgstr ""
 "###\n"
 "### Note que o nome é exibido, porém não pode ser alterado"
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -279,7 +279,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -304,16 +304,16 @@ msgstr "%v (interrompa mais duas vezes para forçar)"
 msgid "'%s' isn't a supported file type"
 msgstr "'%s' não é um tipo de arquivo suportado"
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr "(nenhum)"
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -337,12 +337,12 @@ msgid "--refresh can only be used with containers"
 msgstr "--refresh só pode ser usado com containers"
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 #, fuzzy
 msgid "--target cannot be used with containers"
 msgstr "--refresh só pode ser usado com containers"
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -354,15 +354,15 @@ msgstr "ALIASES"
 msgid "ARCH"
 msgstr "ARQUITETURA"
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr "ARQUITETURA"
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr "TIPO DE AUTENTICAÇÃO"
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr "Aceitar certificado"
 
@@ -374,19 +374,19 @@ msgstr "Ação (padrão para o GET)"
 msgid "Add devices to containers or profiles"
 msgstr "Adicionar dispositivos aos containers ou perfis"
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr "Adicionar novo aliases"
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr "Adicionar novos servidores remoto"
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr "Adicionar novos clientes confiáveis"
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr "Adicionar perfis aos containers"
 
@@ -395,22 +395,22 @@ msgstr "Adicionar perfis aos containers"
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Senha de administrador para %s: "
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr "Alias %s já existe"
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr "Alias %s não existe"
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr "Nome do alias ausente"
 
@@ -418,7 +418,7 @@ msgstr "Nome do alias ausente"
 msgid "Aliases:"
 msgstr "Aliases:"
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr "Arquitetura: %s"
@@ -428,7 +428,7 @@ msgstr "Arquitetura: %s"
 msgid "Architecture: %v"
 msgstr "Arquitetura: %v"
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr "Atribuir conjuntos de perfis aos containers"
 
@@ -464,7 +464,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "Tipo de autenticação '%s' não suportada pelo servidor"
@@ -479,7 +479,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Atualização automática: %s"
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr "IMAGEM BASE"
 
@@ -492,7 +492,7 @@ msgstr "Backup exportado com sucesso!"
 msgid "Bad key/value pair: %s"
 msgstr "par de chave/valor inválido %s"
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -517,45 +517,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr "Marca: %v"
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes recebido"
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Bytes enviado"
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr "CANCELÁVEL"
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr "NOME COMUM"
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr "Utilização do CPU:"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr "Utilização do CPU (em segundos)"
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr "Utilização do CPU:"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, fuzzy, c-format
 msgid "CPUs (%s):"
 msgstr "CPUs:"
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr "CRIADO"
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr "CRIADO EM"
 
@@ -569,7 +569,7 @@ msgstr "Versão CUDA: %v"
 msgid "Cached: %s"
 msgstr "Em cache: %s"
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 #, fuzzy
 msgid "Caches:"
 msgstr "Em cache: %s"
@@ -591,11 +591,11 @@ msgstr "Não pode pegar um diretório sem --recursive"
 msgid "Can't read from stdin: %s"
 msgstr "Não é possível ler stdin: %s"
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr "Não é possível remover o default remoto"
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr "Não é possível especificar --fast com --columns"
 
@@ -603,7 +603,7 @@ msgstr "Não é possível especificar --fast com --columns"
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr "Não pode especificar a coluna L, quando não em cluster"
 
@@ -616,11 +616,11 @@ msgstr "Não é possível fornecer o uid/gid/modo no modo recursivo"
 msgid "Can't unset key '%s', it's not currently set"
 msgstr "Não é possível remover chave '%s', não está atualmente definido"
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr "Cartão %d:"
@@ -630,12 +630,12 @@ msgstr "Cartão %d:"
 msgid "Card: %s (%s)"
 msgstr "Em cache: %s"
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Certificado fingerprint: %s"
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr "Certificado do cliente armazenado no servidor:"
 
@@ -647,18 +647,18 @@ msgstr "Versão do cliente: %s\n"
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr "Nome de membro do cluster"
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr "Clustering ativado"
 
@@ -687,7 +687,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr "Configuração chave/valor para aplicar ao novo contêiner"
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -696,7 +696,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -753,7 +753,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr "Copiar perfis"
 
@@ -783,20 +783,20 @@ msgstr "Copiar a imagem: %s"
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr "Impossível criar diretório para certificado do servidor"
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -832,7 +832,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -844,11 +844,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr "Criar novas redes"
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr "Criar perfis"
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr "Criar projetos"
 
@@ -860,7 +860,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr "Criado: %s"
@@ -874,21 +874,21 @@ msgstr "Criando %s"
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr "DRIVER"
 
@@ -900,11 +900,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr "Definir um algoritmo de compressão: para imagem ou nenhum"
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -916,7 +916,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr "Apagar nomes alternativos da imagem"
 
@@ -928,11 +928,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr "Apagar projetos"
 
@@ -945,54 +945,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr "Descrição"
 
@@ -1032,7 +1032,7 @@ msgstr "Dispositivo %s removido de %s"
 msgid "Device already exists: %s"
 msgstr "O dispositivo já existe: %s"
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, fuzzy, c-format
 msgid "Device: %s"
 msgstr "Em cache: %s"
@@ -1053,26 +1053,26 @@ msgstr "Desabilitar alocação de pseudo-terminal"
 msgid "Disable stdin (reads from /dev/null)"
 msgstr "Desabilitar stdin (ler de /dev/null)"
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr "Uso de disco:"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr "Uso de disco:"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr "Uso de disco:"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr "Uso de disco:"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1085,15 +1085,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr "EFÊMERO"
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr "DATA DE VALIDADE"
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr "Editar templates de arquivo do container"
 
@@ -1117,11 +1117,11 @@ msgstr "Editar propriedades da imagem"
 msgid "Edit network configurations as YAML"
 msgstr "Editar configurações de rede como YAML"
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 #, fuzzy
 msgid "Edit project configurations as YAML"
 msgstr "Editar configurações de perfil como YAML"
@@ -1134,16 +1134,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1166,7 +1166,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1232,12 +1232,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1268,7 +1268,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1281,7 +1281,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr "Forçar alocação de pseudo-terminal"
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1297,7 +1297,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1321,34 +1321,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1356,7 +1356,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1376,11 +1376,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 #, fuzzy
 msgid "Get values for project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
@@ -1401,15 +1401,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr "HOSTNAME"
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr "ID"
 
@@ -1418,28 +1418,28 @@ msgstr "ID"
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr "IPV4"
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr "IPV6"
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1457,7 +1457,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Ignorar o estado do container"
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1469,7 +1469,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr "Imagem exportada com sucesso!"
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr "Falta o identificador da imagem"
 
@@ -1483,7 +1483,7 @@ msgstr "Falta o identificador da imagem: %s"
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1511,6 +1511,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1519,41 +1523,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1568,7 +1572,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1583,20 +1587,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, fuzzy, c-format
+msgid "IsSM: %s (%s)"
+msgstr "Em cache: %s"
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1604,7 +1613,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1627,15 +1636,15 @@ msgstr "Arquitetura: %v"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1647,7 +1656,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1655,7 +1664,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1728,11 +1737,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1769,11 +1778,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1781,28 +1790,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1811,11 +1820,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, fuzzy, c-format
+msgid "MAD: %s (%s)"
+msgstr "Em cache: %s"
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1836,11 +1850,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1852,7 +1866,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1864,7 +1878,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1891,11 +1905,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1915,42 +1929,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1967,13 +1981,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1985,34 +1999,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -2024,7 +2038,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -2058,7 +2072,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -2079,31 +2093,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2116,12 +2130,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2141,7 +2155,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2150,7 +2164,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2187,7 +2201,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2196,11 +2210,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2208,11 +2222,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2230,39 +2244,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2279,7 +2293,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2293,13 +2307,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2319,7 +2333,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2334,32 +2348,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2372,27 +2386,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2401,7 +2415,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2437,7 +2451,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2446,7 +2460,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2455,33 +2469,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "Editar arquivos no container"
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2489,12 +2503,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2504,11 +2518,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2516,24 +2530,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2541,31 +2555,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2579,7 +2593,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2605,7 +2619,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2626,31 +2640,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2658,19 +2672,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2706,11 +2720,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2719,11 +2733,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2732,12 +2746,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2746,11 +2760,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2759,11 +2773,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2772,7 +2786,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2808,15 +2822,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2824,7 +2838,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2836,27 +2850,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2864,7 +2878,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2876,7 +2890,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2897,20 +2911,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2938,7 +2952,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -3011,28 +3025,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3102,7 +3116,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3131,11 +3145,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3145,7 +3159,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3172,16 +3186,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3189,12 +3203,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3208,7 +3222,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3230,24 +3244,24 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3261,7 +3275,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3270,7 +3284,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3279,12 +3293,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3294,7 +3308,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, fuzzy, c-format
+msgid "Verb: %s (%s)"
+msgstr "Em cache: %s"
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3317,8 +3336,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3338,15 +3357,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3354,15 +3373,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3386,7 +3405,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3406,7 +3425,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3414,11 +3433,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3434,27 +3453,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3476,7 +3495,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3488,11 +3507,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3532,7 +3551,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3556,11 +3575,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3568,7 +3587,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3585,7 +3604,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3620,11 +3639,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3632,7 +3651,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3678,12 +3697,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3691,11 +3710,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3707,23 +3726,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3843,13 +3862,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3861,13 +3880,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3906,7 +3925,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3929,7 +3948,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3951,11 +3970,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3971,11 +3990,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -4001,27 +4020,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4029,19 +4048,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4049,25 +4068,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -4087,23 +4106,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4111,7 +4130,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4119,7 +4138,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4127,35 +4146,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4167,7 +4186,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4179,11 +4198,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4195,20 +4214,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4216,7 +4235,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4228,23 +4247,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4264,11 +4283,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr "sim"
diff --git a/po/ru.po b/po/ru.po
index 69e0f53709..951d471bcb 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2018-06-22 15:57+0000\n"
 "Last-Translator: Александр Киль <shorrey at gmail.com>\n"
 "Language-Team: Russian <https://hosted.weblate.org/projects/linux-containers/"
@@ -197,7 +197,7 @@ msgstr ""
 "###\n"
 "### Обратите внимание, что только конфигурация может быть изменена."
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -235,7 +235,7 @@ msgstr ""
 "###\n"
 "### Обратите внимание, что имя отображается, но не может быть изменено"
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -270,7 +270,7 @@ msgstr ""
 "###\n"
 "### Обратите внимание, что имя отображается, но не может быть изменено"
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -295,16 +295,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr "(пусто)"
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -327,11 +327,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr "ПСЕВДОНИМ"
 
@@ -344,15 +344,15 @@ msgstr "ПСЕВДОНИМ"
 msgid "ARCH"
 msgstr "ARCH"
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr "АРХИТЕКТУРА"
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr "Принять сертификат"
 
@@ -364,20 +364,20 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Псевдонимы:"
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -386,22 +386,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Пароль администратора для %s: "
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -409,7 +409,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Псевдонимы:"
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr "Архитектура: %s"
@@ -419,7 +419,7 @@ msgstr "Архитектура: %s"
 msgid "Architecture: %v"
 msgstr "Архитектура: %s"
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -455,7 +455,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -470,7 +470,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Авто-обновление: %s"
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -483,7 +483,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -508,47 +508,47 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Получено байтов"
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Отправлено байтов"
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr "ОБЩЕЕ ИМЯ"
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, fuzzy, c-format
 msgid "CPU (%s):"
 msgstr " Использование ЦП:"
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr "Использование ЦП (в секундах)"
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 #, fuzzy
 msgid "CPU usage:"
 msgstr " Использование ЦП:"
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 #, fuzzy
 msgid "CREATED"
 msgstr "СОЗДАН"
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr "СОЗДАН"
 
@@ -562,7 +562,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -583,11 +583,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr "Невозможно прочитать из стандартного ввода: %s"
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -595,7 +595,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -608,11 +608,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -622,12 +622,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr "Сертификат клиента хранится на сервере: "
 
@@ -639,18 +639,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -674,7 +674,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -683,7 +683,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -740,7 +740,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -771,20 +771,20 @@ msgstr "Копирование образа: %s"
 msgid "Copying the storage volume: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr "Не удалось создать каталог сертификата сервера"
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -818,7 +818,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 #, fuzzy
 msgid "Create new container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -832,11 +832,11 @@ msgstr "Копирование образа: %s"
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -850,7 +850,7 @@ msgstr "Копирование образа: %s"
 msgid "Create the container with no profiles applied"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -864,21 +864,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -890,11 +890,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 #, fuzzy
 msgid "Delete container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -908,7 +908,7 @@ msgstr "Невозможно добавить имя контейнера в с
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -920,11 +920,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -938,54 +938,54 @@ msgid "Delete storage volumes"
 msgstr "Копирование образа: %s"
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -1025,7 +1025,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -1046,27 +1046,27 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, fuzzy, c-format
 msgid "Disk %d:"
 msgstr " Использование диска:"
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 #, fuzzy
 msgid "Disk usage:"
 msgstr " Использование диска:"
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 #, fuzzy
 msgid "Disk:"
 msgstr " Использование диска:"
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 #, fuzzy
 msgid "Disks:"
 msgstr " Использование диска:"
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1079,15 +1079,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 #, fuzzy
 msgid "Edit container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -1112,11 +1112,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1128,16 +1128,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1160,7 +1160,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, fuzzy, c-format
 msgid "Error updating template file: %s"
 msgstr "Копирование образа: %s"
@@ -1229,12 +1229,12 @@ msgstr "Копирование образа: %s"
 msgid "Exporting the image: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1265,7 +1265,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1278,7 +1278,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1294,7 +1294,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1318,34 +1318,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1353,7 +1353,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1373,11 +1373,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1397,15 +1397,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1414,28 +1414,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1454,7 +1454,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1466,7 +1466,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1480,7 +1480,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1510,6 +1510,10 @@ msgstr "Копирование образа: %s"
 msgid "Importing container: %s"
 msgstr "Невозможно добавить имя контейнера в список"
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1518,41 +1522,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1567,7 +1571,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1582,20 +1586,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1603,7 +1612,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1626,16 +1635,16 @@ msgstr "Архитектура: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 #, fuzzy
 msgid "List aliases"
 msgstr "Псевдонимы:"
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1647,7 +1656,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1655,7 +1664,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 #, fuzzy
 msgid "List container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -1729,11 +1738,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1770,11 +1779,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1783,28 +1792,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1813,11 +1822,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1838,11 +1852,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1854,7 +1868,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 #, fuzzy
 msgid "Manage container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -1867,7 +1881,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1894,11 +1908,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1920,43 +1934,43 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 #, fuzzy
 msgid "Memory usage:"
 msgstr " Использование памяти:"
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 #, fuzzy
 msgid "Memory:"
 msgstr " Использование памяти:"
@@ -1974,14 +1988,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 #, fuzzy
 msgid "Missing container name"
 msgstr "Имя контейнера: %s"
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1993,35 +2007,35 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 #, fuzzy
 msgid "Missing project name"
 msgstr "Имя контейнера: %s"
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -2034,7 +2048,7 @@ msgstr "Копирование образа: %s"
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -2068,7 +2082,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 #, fuzzy
 msgid "Move storage volumes between pools"
 msgstr "Копирование образа: %s"
@@ -2090,31 +2104,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -2127,12 +2141,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2152,7 +2166,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2161,7 +2175,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr " Использование сети:"
@@ -2200,7 +2214,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2209,11 +2223,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2221,11 +2235,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2243,39 +2257,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2292,7 +2306,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2306,13 +2320,13 @@ msgstr "Авто-обновление: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2332,7 +2346,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2347,32 +2361,32 @@ msgstr "Невозможно добавить имя контейнера в с
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2385,27 +2399,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2414,7 +2428,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2450,7 +2464,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2459,7 +2473,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 #, fuzzy
 msgid "Refresh images"
 msgstr "Копирование образа: %s"
@@ -2469,33 +2483,33 @@ msgstr "Копирование образа: %s"
 msgid "Refreshing container: %s"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, fuzzy, c-format
 msgid "Refreshing the image: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2503,12 +2517,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2518,11 +2532,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2531,24 +2545,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2557,33 +2571,33 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 #, fuzzy
 msgid "Rename storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 #, fuzzy
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2597,7 +2611,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2623,7 +2637,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 #, fuzzy
 msgid "Restore storage volume snapshots"
 msgstr "Копирование образа: %s"
@@ -2645,31 +2659,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2677,19 +2691,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2725,11 +2739,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2738,11 +2752,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2751,11 +2765,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2764,11 +2778,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2777,11 +2791,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2790,7 +2804,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2827,16 +2841,16 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 #, fuzzy
 msgid "Show content of container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2844,7 +2858,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2856,27 +2870,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2884,7 +2898,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2896,7 +2910,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2917,21 +2931,21 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, fuzzy, c-format
 msgid "Size: %s"
 msgstr "Авто-обновление: %s"
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 #, fuzzy
 msgid "Snapshot storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2959,7 +2973,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Авто-обновление: %s"
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -3034,28 +3048,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -3125,7 +3139,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -3154,11 +3168,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3168,7 +3182,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3195,16 +3209,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3212,12 +3226,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3231,7 +3245,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3253,23 +3267,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3283,7 +3297,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3292,7 +3306,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3301,12 +3315,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3316,7 +3330,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3339,8 +3358,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3360,15 +3379,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3376,16 +3395,16 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 #, fuzzy
 msgid "alias"
 msgstr "Псевдонимы:"
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3409,7 +3428,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3429,7 +3448,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3437,11 +3456,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3457,27 +3476,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3511,7 +3530,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3527,11 +3546,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 #, fuzzy
 msgid "delete [<remote>:]<project>"
 msgstr ""
@@ -3575,7 +3594,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3603,11 +3622,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3619,7 +3638,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3636,7 +3655,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3679,11 +3698,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 #, fuzzy
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
@@ -3695,7 +3714,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3745,12 +3764,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3758,11 +3777,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3774,23 +3793,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3910,13 +3929,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3928,13 +3947,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3973,7 +3992,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3996,7 +4015,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4022,11 +4041,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -4046,11 +4065,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -4084,7 +4103,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -4092,23 +4111,23 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4116,19 +4135,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4140,15 +4159,15 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 #, fuzzy
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
@@ -4158,11 +4177,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4178,7 +4197,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 #, fuzzy
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
@@ -4194,7 +4213,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
@@ -4202,11 +4221,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
@@ -4214,7 +4233,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
@@ -4222,7 +4241,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4238,7 +4257,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4246,7 +4265,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4254,27 +4273,27 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 #, fuzzy
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -4282,11 +4301,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4302,7 +4321,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 #, fuzzy
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
@@ -4322,11 +4341,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4342,20 +4361,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4363,7 +4382,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4375,23 +4394,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
@@ -4416,11 +4435,11 @@ msgstr ""
 msgid "volume"
 msgstr "Столбцы"
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr "да"
diff --git a/po/sr.po b/po/sr.po
index d6aa734a9d..568e9d92fe 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/sv.po b/po/sv.po
index a7ba6e10ba..4184326c2e 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/tr.po b/po/tr.po
index f5819bfd88..7916e02910 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/uk.po b/po/uk.po
index f38ef10e7d..1be65ef646 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -143,7 +143,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -185,16 +185,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -217,11 +217,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -233,15 +233,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,22 +274,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -297,7 +297,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,7 +307,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -371,7 +371,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -396,45 +396,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -469,11 +469,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,11 +494,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -525,18 +525,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,7 +569,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -626,7 +626,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -656,20 +656,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,7 +701,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -743,21 +743,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,7 +785,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -814,54 +814,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -901,7 +901,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -922,24 +922,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -984,11 +984,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1000,16 +1000,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1032,7 +1032,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1098,12 +1098,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1134,7 +1134,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1163,7 +1163,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,34 +1187,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1222,7 +1222,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1242,11 +1242,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1266,15 +1266,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1283,28 +1283,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,7 +1322,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1334,7 +1334,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1348,7 +1348,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1376,6 +1376,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1384,41 +1388,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1433,7 +1437,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1448,20 +1452,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1469,7 +1478,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1492,15 +1501,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1512,7 +1521,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1520,7 +1529,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1593,11 +1602,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1634,11 +1643,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1646,28 +1655,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1676,11 +1685,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1701,11 +1715,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1717,7 +1731,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1729,7 +1743,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1756,11 +1770,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1780,42 +1794,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1832,13 +1846,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1850,34 +1864,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1889,7 +1903,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1923,7 +1937,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1944,31 +1958,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1981,12 +1995,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2006,7 +2020,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2015,7 +2029,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2052,7 +2066,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2061,11 +2075,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2073,11 +2087,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2095,39 +2109,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2144,7 +2158,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2158,13 +2172,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2184,7 +2198,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2199,32 +2213,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2237,27 +2251,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2266,7 +2280,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2302,7 +2316,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2311,7 +2325,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2320,33 +2334,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2354,12 +2368,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2369,11 +2383,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2381,24 +2395,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2406,31 +2420,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2444,7 +2458,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2470,7 +2484,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2491,31 +2505,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2523,19 +2537,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2571,11 +2585,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2584,11 +2598,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2597,11 +2611,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2610,11 +2624,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2623,11 +2637,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2636,7 +2650,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2672,15 +2686,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2688,7 +2702,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2700,27 +2714,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2728,7 +2742,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2740,7 +2754,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2761,20 +2775,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2802,7 +2816,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2875,28 +2889,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2966,7 +2980,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2995,11 +3009,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3009,7 +3023,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3036,16 +3050,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3053,12 +3067,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3072,7 +3086,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3094,23 +3108,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3124,7 +3138,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3133,7 +3147,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3142,12 +3156,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3157,7 +3171,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3180,8 +3199,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3201,15 +3220,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3217,15 +3236,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3249,7 +3268,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3269,7 +3288,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3277,11 +3296,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3297,27 +3316,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,7 +3358,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3351,11 +3370,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3395,7 +3414,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3419,11 +3438,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3431,7 +3450,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3448,7 +3467,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3483,11 +3502,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3495,7 +3514,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3541,12 +3560,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3554,11 +3573,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3570,23 +3589,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3706,13 +3725,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3724,13 +3743,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3769,7 +3788,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3792,7 +3811,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3814,11 +3833,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3834,11 +3853,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3864,27 +3883,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3892,19 +3911,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3912,25 +3931,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3942,7 +3961,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3950,23 +3969,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3974,7 +3993,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3982,7 +4001,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3990,35 +4009,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4030,7 +4049,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4042,11 +4061,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4058,20 +4077,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4079,7 +4098,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4091,23 +4110,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4127,11 +4146,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index c38be06755..eee05cec4f 100644
--- a/po/zh_Hans.po
+++ b/po/zh_Hans.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2019-08-08 13:58-0400\n"
+"POT-Creation-Date: 2019-08-09 15:51-0400\n"
 "PO-Revision-Date: 2018-09-11 19:15+0000\n"
 "Last-Translator: 0x0916 <w at laoqinren.net>\n"
 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
@@ -125,7 +125,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:414
+#: lxc/profile.go:415
 msgid ""
 "### This is a yaml representation of the profile.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -146,7 +146,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/project.go:224
+#: lxc/project.go:225
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -163,7 +163,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/info.go:276
+#: lxc/info.go:292
 #, c-format
 msgid "%d (id: %d, online: %v)"
 msgstr ""
@@ -188,16 +188,16 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:221
+#: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/info.go:265
+#: lxc/info.go:281
 #, c-format
 msgid "- Level %d (type: %s): %s"
 msgstr ""
 
-#: lxc/info.go:244
+#: lxc/info.go:260
 #, c-format
 msgid "- Partition %d"
 msgstr ""
@@ -220,11 +220,11 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:150 lxc/config.go:406 lxc/config.go:499 lxc/config.go:637
-#: lxc/info.go:407
+#: lxc/info.go:423
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
+#: lxc/alias.go:125 lxc/image.go:936 lxc/image_alias.go:226
 msgid "ALIAS"
 msgstr ""
 
@@ -236,15 +236,15 @@ msgstr ""
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:418
+#: lxc/list.go:419
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:507
+#: lxc/remote.go:509
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:87
+#: lxc/remote.go:88
 msgid "Accept certificate"
 msgstr ""
 
@@ -256,19 +256,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:51 lxc/alias.go:52
+#: lxc/alias.go:52 lxc/alias.go:53
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:82 lxc/remote.go:83
+#: lxc/remote.go:83 lxc/remote.go:84
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:55 lxc/config_trust.go:56
+#: lxc/config_trust.go:56 lxc/config_trust.go:57
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:98 lxc/profile.go:99
+#: lxc/profile.go:99 lxc/profile.go:100
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -277,22 +277,22 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:356
+#: lxc/remote.go:357
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:75 lxc/alias.go:170
+#: lxc/alias.go:76 lxc/alias.go:172
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:164 lxc/alias.go:215
+#: lxc/alias.go:166 lxc/alias.go:217
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
+#: lxc/image_alias.go:81 lxc/image_alias.go:128 lxc/image_alias.go:270
 msgid "Alias name missing"
 msgstr ""
 
@@ -300,7 +300,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:446
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -310,7 +310,7 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:161 lxc/profile.go:162
+#: lxc/profile.go:162 lxc/profile.go:163
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
@@ -346,7 +346,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:339
+#: lxc/remote.go:340
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -361,7 +361,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:430 lxc/list.go:431
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -374,7 +374,7 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:119 lxc/publish.go:176
+#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:120 lxc/publish.go:176
 #: lxc/storage.go:122 lxc/storage_volume.go:504
 #, c-format
 msgid "Bad key=value pair: %s"
@@ -399,45 +399,45 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:785
+#: lxc/info.go:539 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:786
+#: lxc/info.go:540 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:161
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:171
+#: lxc/config_trust.go:173
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:311
+#: lxc/info.go:327
 #, c-format
 msgid "CPU (%s):"
 msgstr ""
 
-#: lxc/info.go:487
+#: lxc/info.go:503
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:491
+#: lxc/info.go:507
 msgid "CPU usage:"
 msgstr ""
 
-#: lxc/info.go:314
+#: lxc/info.go:330
 #, c-format
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:160
+#: lxc/operation.go:162
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:419
+#: lxc/list.go:420
 msgid "CREATED AT"
 msgstr ""
 
@@ -451,7 +451,7 @@ msgstr ""
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/info.go:263
+#: lxc/info.go:279
 msgid "Caches:"
 msgstr ""
 
@@ -472,11 +472,11 @@ msgstr ""
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:616
+#: lxc/remote.go:618
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:437
+#: lxc/list.go:438
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -484,7 +484,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:449
+#: lxc/list.go:450
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -497,11 +497,11 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:93
 msgid "Candid domain to use"
 msgstr ""
 
-#: lxc/info.go:357 lxc/info.go:369
+#: lxc/info.go:373 lxc/info.go:385
 #, c-format
 msgid "Card %d:"
 msgstr ""
@@ -511,12 +511,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:251
+#: lxc/remote.go:252
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:395
+#: lxc/remote.go:396
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -528,18 +528,18 @@ msgstr ""
 #: lxc/config.go:96 lxc/config.go:376 lxc/config.go:469 lxc/config.go:584
 #: lxc/config.go:702 lxc/copy.go:52 lxc/info.go:44 lxc/init.go:47
 #: lxc/move.go:58 lxc/network.go:256 lxc/network.go:671 lxc/network.go:729
-#: lxc/network.go:1014 lxc/network.go:1081 lxc/network.go:1143
-#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:586
-#: lxc/storage.go:653 lxc/storage.go:736 lxc/storage_volume.go:305
+#: lxc/network.go:1016 lxc/network.go:1083 lxc/network.go:1145
+#: lxc/storage.go:91 lxc/storage.go:335 lxc/storage.go:391 lxc/storage.go:587
+#: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:305
 #: lxc/storage_volume.go:465 lxc/storage_volume.go:542
 #: lxc/storage_volume.go:784 lxc/storage_volume.go:981
-#: lxc/storage_volume.go:1145 lxc/storage_volume.go:1175
-#: lxc/storage_volume.go:1281 lxc/storage_volume.go:1360
-#: lxc/storage_volume.go:1453
+#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1282 lxc/storage_volume.go:1361
+#: lxc/storage_volume.go:1454
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:399
+#: lxc/cluster.go:401
 msgid "Clustering enabled"
 msgstr ""
 
@@ -563,7 +563,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:86
+#: lxc/project.go:87
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -572,7 +572,7 @@ msgid "Config key/value to apply to the target container"
 msgstr ""
 
 #: lxc/config.go:270 lxc/config.go:343 lxc/config_metadata.go:143
-#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:496 lxc/project.go:302
+#: lxc/image.go:405 lxc/network.go:639 lxc/profile.go:497 lxc/project.go:303
 #: lxc/storage.go:302 lxc/storage_volume.go:917 lxc/storage_volume.go:947
 #, c-format
 msgid "Config parsing error: %s"
@@ -629,7 +629,7 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:241 lxc/profile.go:242
+#: lxc/profile.go:242 lxc/profile.go:243
 msgid "Copy profiles"
 msgstr ""
 
@@ -659,20 +659,20 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:287
 #, c-format
 msgid "Core %d"
 msgstr ""
 
-#: lxc/info.go:269
+#: lxc/info.go:285
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:266
+#: lxc/remote.go:267
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:55 lxc/image_alias.go:56
+#: lxc/image_alias.go:56 lxc/image_alias.go:57
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -704,7 +704,7 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:63 lxc/config_template.go:64
+#: lxc/config_template.go:64 lxc/config_template.go:65
 msgid "Create new container file templates"
 msgstr ""
 
@@ -716,11 +716,11 @@ msgstr ""
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:297 lxc/profile.go:298
+#: lxc/profile.go:298 lxc/profile.go:299
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:83 lxc/project.go:84
+#: lxc/project.go:84 lxc/project.go:85
 msgid "Create projects"
 msgstr ""
 
@@ -732,7 +732,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:448
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -746,21 +746,21 @@ msgstr ""
 msgid "Creating the container"
 msgstr ""
 
-#: lxc/info.go:134 lxc/info.go:203
+#: lxc/info.go:134 lxc/info.go:219
 #, c-format
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:125
+#: lxc/cluster.go:127
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:941 lxc/image_alias.go:226 lxc/list.go:420 lxc/network.go:868
-#: lxc/operation.go:157 lxc/storage.go:557 lxc/storage_volume.go:1118
+#: lxc/image.go:941 lxc/image_alias.go:228 lxc/list.go:421 lxc/network.go:869
+#: lxc/operation.go:159 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:558
+#: lxc/storage.go:559
 msgid "DRIVER"
 msgstr ""
 
@@ -772,11 +772,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:50 lxc/operation.go:51
+#: lxc/operation.go:51 lxc/operation.go:52
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:106 lxc/config_template.go:107
+#: lxc/config_template.go:107 lxc/config_template.go:108
 msgid "Delete container file templates"
 msgstr ""
 
@@ -788,7 +788,7 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:102 lxc/image_alias.go:103
+#: lxc/image_alias.go:103 lxc/image_alias.go:104
 msgid "Delete image aliases"
 msgstr ""
 
@@ -800,11 +800,11 @@ msgstr ""
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:351 lxc/profile.go:352
+#: lxc/profile.go:352 lxc/profile.go:353
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:148 lxc/project.go:149
+#: lxc/project.go:149 lxc/project.go:150
 msgid "Delete projects"
 msgstr ""
 
@@ -817,54 +817,54 @@ msgid "Delete storage volumes"
 msgstr ""
 
 #: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91
-#: lxc/alias.go:20 lxc/alias.go:52 lxc/alias.go:98 lxc/alias.go:141
-#: lxc/alias.go:192 lxc/cluster.go:27 lxc/cluster.go:66 lxc/cluster.go:143
-#: lxc/cluster.go:193 lxc/cluster.go:243 lxc/cluster.go:328 lxc/config.go:31
+#: lxc/alias.go:21 lxc/alias.go:53 lxc/alias.go:99 lxc/alias.go:143
+#: lxc/alias.go:194 lxc/cluster.go:28 lxc/cluster.go:67 lxc/cluster.go:145
+#: lxc/cluster.go:195 lxc/cluster.go:245 lxc/cluster.go:330 lxc/config.go:31
 #: lxc/config.go:90 lxc/config.go:373 lxc/config.go:454 lxc/config.go:580
 #: lxc/config.go:699 lxc/config_device.go:24 lxc/config_device.go:76
 #: lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321
 #: lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:599
 #: lxc/config_device.go:667 lxc/config_metadata.go:28 lxc/config_metadata.go:53
-#: lxc/config_metadata.go:175 lxc/config_template.go:27
-#: lxc/config_template.go:64 lxc/config_template.go:107
-#: lxc/config_template.go:149 lxc/config_template.go:235
-#: lxc/config_template.go:293 lxc/config_trust.go:27 lxc/config_trust.go:56
-#: lxc/config_trust.go:114 lxc/config_trust.go:191 lxc/console.go:32
+#: lxc/config_metadata.go:175 lxc/config_template.go:28
+#: lxc/config_template.go:65 lxc/config_template.go:108
+#: lxc/config_template.go:150 lxc/config_template.go:236
+#: lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57
+#: lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:32
 #: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:41 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:38 lxc/image.go:127 lxc/image.go:261
 #: lxc/image.go:312 lxc/image.go:435 lxc/image.go:575 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1190 lxc/image.go:1267 lxc/image_alias.go:23
-#: lxc/image_alias.go:56 lxc/image_alias.go:103 lxc/image_alias.go:148
-#: lxc/image_alias.go:244 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
+#: lxc/image.go:903 lxc/image.go:1191 lxc/image.go:1268 lxc/image_alias.go:24
+#: lxc/image_alias.go:57 lxc/image_alias.go:104 lxc/image_alias.go:149
+#: lxc/image_alias.go:246 lxc/import.go:28 lxc/info.go:32 lxc/init.go:36
 #: lxc/launch.go:23 lxc/list.go:43 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:31 lxc/network.go:107
 #: lxc/network.go:180 lxc/network.go:253 lxc/network.go:325 lxc/network.go:375
 #: lxc/network.go:460 lxc/network.go:545 lxc/network.go:668 lxc/network.go:726
-#: lxc/network.go:806 lxc/network.go:890 lxc/network.go:958 lxc/network.go:1008
-#: lxc/network.go:1078 lxc/network.go:1140 lxc/operation.go:22
-#: lxc/operation.go:51 lxc/operation.go:100 lxc/operation.go:178
-#: lxc/profile.go:27 lxc/profile.go:99 lxc/profile.go:162 lxc/profile.go:242
-#: lxc/profile.go:298 lxc/profile.go:352 lxc/profile.go:402 lxc/profile.go:526
-#: lxc/profile.go:575 lxc/profile.go:633 lxc/profile.go:709 lxc/profile.go:759
-#: lxc/profile.go:818 lxc/profile.go:872 lxc/project.go:27 lxc/project.go:84
-#: lxc/project.go:149 lxc/project.go:212 lxc/project.go:332 lxc/project.go:382
-#: lxc/project.go:466 lxc/project.go:521 lxc/project.go:581 lxc/project.go:610
-#: lxc/project.go:663 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:32
-#: lxc/remote.go:83 lxc/remote.go:411 lxc/remote.go:447 lxc/remote.go:526
-#: lxc/remote.go:588 lxc/remote.go:638 lxc/remote.go:676 lxc/rename.go:21
+#: lxc/network.go:806 lxc/network.go:891 lxc/network.go:960 lxc/network.go:1010
+#: lxc/network.go:1080 lxc/network.go:1142 lxc/operation.go:23
+#: lxc/operation.go:52 lxc/operation.go:101 lxc/operation.go:180
+#: lxc/profile.go:28 lxc/profile.go:100 lxc/profile.go:163 lxc/profile.go:243
+#: lxc/profile.go:299 lxc/profile.go:353 lxc/profile.go:403 lxc/profile.go:527
+#: lxc/profile.go:576 lxc/profile.go:635 lxc/profile.go:711 lxc/profile.go:761
+#: lxc/profile.go:820 lxc/profile.go:874 lxc/project.go:28 lxc/project.go:85
+#: lxc/project.go:150 lxc/project.go:213 lxc/project.go:333 lxc/project.go:383
+#: lxc/project.go:468 lxc/project.go:523 lxc/project.go:583 lxc/project.go:612
+#: lxc/project.go:665 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:33
+#: lxc/remote.go:84 lxc/remote.go:412 lxc/remote.go:448 lxc/remote.go:528
+#: lxc/remote.go:590 lxc/remote.go:640 lxc/remote.go:678 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:32 lxc/storage.go:88
 #: lxc/storage.go:162 lxc/storage.go:212 lxc/storage.go:332 lxc/storage.go:387
-#: lxc/storage.go:507 lxc/storage.go:580 lxc/storage.go:649 lxc/storage.go:733
+#: lxc/storage.go:507 lxc/storage.go:581 lxc/storage.go:650 lxc/storage.go:734
 #: lxc/storage_volume.go:32 lxc/storage_volume.go:139 lxc/storage_volume.go:218
 #: lxc/storage_volume.go:301 lxc/storage_volume.go:462
 #: lxc/storage_volume.go:539 lxc/storage_volume.go:615
 #: lxc/storage_volume.go:697 lxc/storage_volume.go:778
 #: lxc/storage_volume.go:978 lxc/storage_volume.go:1069
-#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1172
-#: lxc/storage_volume.go:1275 lxc/storage_volume.go:1351
-#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1481
-#: lxc/storage_volume.go:1552 lxc/version.go:22
+#: lxc/storage_volume.go:1142 lxc/storage_volume.go:1173
+#: lxc/storage_volume.go:1276 lxc/storage_volume.go:1352
+#: lxc/storage_volume.go:1451 lxc/storage_volume.go:1482
+#: lxc/storage_volume.go:1553 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -904,7 +904,7 @@ msgstr ""
 msgid "Device already exists: %s"
 msgstr ""
 
-#: lxc/info.go:222 lxc/info.go:246
+#: lxc/info.go:238 lxc/info.go:262
 #, c-format
 msgid "Device: %s"
 msgstr ""
@@ -925,24 +925,24 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:381
+#: lxc/info.go:397
 #, c-format
 msgid "Disk %d:"
 msgstr ""
 
-#: lxc/info.go:480
+#: lxc/info.go:496
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/info.go:376
+#: lxc/info.go:392
 msgid "Disk:"
 msgstr ""
 
-#: lxc/info.go:379
+#: lxc/info.go:395
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:248
+#: lxc/cluster.go:250
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -955,15 +955,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:623
+#: lxc/list.go:624
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:173
+#: lxc/config_trust.go:175
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:148 lxc/config_template.go:149
+#: lxc/config_template.go:149 lxc/config_template.go:150
 msgid "Edit container file templates"
 msgstr ""
 
@@ -987,11 +987,11 @@ msgstr ""
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:401 lxc/profile.go:402
+#: lxc/profile.go:402 lxc/profile.go:403
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:211 lxc/project.go:212
+#: lxc/project.go:212 lxc/project.go:213
 msgid "Edit project configurations as YAML"
 msgstr ""
 
@@ -1003,16 +1003,16 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:952 lxc/list.go:461
+#: lxc/image.go:952 lxc/list.go:462
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:327
+#: lxc/cluster.go:329
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:328
+#: lxc/cluster.go:330
 msgid ""
 "Enable clustering on a single non-clustered LXD instance\n"
 "\n"
@@ -1035,7 +1035,7 @@ msgstr ""
 msgid "Ephemeral container"
 msgstr ""
 
-#: lxc/config_template.go:201
+#: lxc/config_template.go:202
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1101,12 +1101,12 @@ msgstr ""
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:276
+#: lxc/config_template.go:278
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
-#: lxc/image_alias.go:225
+#: lxc/config_trust.go:172 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:227
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1137,7 +1137,7 @@ msgstr ""
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:837 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:130
 msgid "Filtering isn't supported yet"
 msgstr ""
 
@@ -1150,7 +1150,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:247
+#: lxc/cluster.go:249
 msgid "Force removing a member, even if degraded"
 msgstr ""
 
@@ -1166,7 +1166,7 @@ msgstr ""
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/cluster.go:255
+#: lxc/cluster.go:257
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1190,34 +1190,34 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/alias.go:100 lxc/cluster.go:68 lxc/config_template.go:237
-#: lxc/config_trust.go:116 lxc/image.go:928 lxc/image_alias.go:153
-#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:892 lxc/operation.go:102
-#: lxc/profile.go:579 lxc/project.go:384 lxc/remote.go:451 lxc/storage.go:509
+#: lxc/alias.go:101 lxc/cluster.go:69 lxc/config_template.go:238
+#: lxc/config_trust.go:117 lxc/image.go:928 lxc/image_alias.go:154
+#: lxc/list.go:113 lxc/network.go:810 lxc/network.go:893 lxc/operation.go:103
+#: lxc/profile.go:580 lxc/project.go:385 lxc/remote.go:452 lxc/storage.go:509
 #: lxc/storage_volume.go:1071
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
-#: lxc/info.go:325 lxc/info.go:336 lxc/info.go:340 lxc/info.go:346
+#: lxc/info.go:341 lxc/info.go:352 lxc/info.go:356 lxc/info.go:362
 #, c-format
 msgid "Free: %v"
 msgstr ""
 
-#: lxc/info.go:272 lxc/info.go:284
+#: lxc/info.go:288 lxc/info.go:300
 #, c-format
 msgid "Frequency: %vMhz"
 msgstr ""
 
-#: lxc/info.go:282
+#: lxc/info.go:298
 #, c-format
 msgid "Frequency: %vMhz (min: %vMhz, max: %vMhz)"
 msgstr ""
 
-#: lxc/info.go:352
+#: lxc/info.go:368
 msgid "GPU:"
 msgstr ""
 
-#: lxc/info.go:355
+#: lxc/info.go:371
 msgid "GPUs:"
 msgstr ""
 
@@ -1225,7 +1225,7 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:207
+#: lxc/remote.go:208
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
@@ -1245,11 +1245,11 @@ msgstr ""
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:525 lxc/profile.go:526
+#: lxc/profile.go:526 lxc/profile.go:527
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:331 lxc/project.go:332
+#: lxc/project.go:332 lxc/project.go:333
 msgid "Get values for project configuration keys"
 msgstr ""
 
@@ -1269,15 +1269,15 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:935
+#: lxc/network.go:937
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/info.go:324 lxc/info.go:335
+#: lxc/info.go:340 lxc/info.go:351
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:155
+#: lxc/operation.go:157
 msgid "ID"
 msgstr ""
 
@@ -1286,28 +1286,28 @@ msgstr ""
 msgid "ID: %d"
 msgstr ""
 
-#: lxc/info.go:171 lxc/info.go:221 lxc/info.go:245
+#: lxc/info.go:171 lxc/info.go:237 lxc/info.go:261
 #, c-format
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:447
+#: lxc/project.go:449
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:937
+#: lxc/network.go:939
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:416
+#: lxc/list.go:417
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:417
+#: lxc/list.go:418
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:172
+#: lxc/config_trust.go:174
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1325,7 +1325,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1250
+#: lxc/image.go:1251
 msgid "Image already up to date."
 msgstr ""
 
@@ -1337,7 +1337,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:284 lxc/image.go:1213
+#: lxc/image.go:284 lxc/image.go:1214
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1351,7 +1351,7 @@ msgstr ""
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1248
+#: lxc/image.go:1249
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1379,6 +1379,10 @@ msgstr ""
 msgid "Importing container: %s"
 msgstr ""
 
+#: lxc/info.go:200
+msgid "Infiniband:"
+msgstr ""
+
 #: lxc/query.go:41
 msgid "Input data"
 msgstr ""
@@ -1387,41 +1391,41 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:159
+#: lxc/remote.go:160
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
 
-#: lxc/config_trust.go:155
+#: lxc/config_trust.go:156
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:486
+#: lxc/list.go:487
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:481
+#: lxc/list.go:482
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/utils.go:306
+#: lxc/utils.go:304
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:504
+#: lxc/list.go:505
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:501
+#: lxc/list.go:502
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:493
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1436,7 +1440,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:148
+#: lxc/remote.go:149
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1451,20 +1455,25 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:777
+#: lxc/info.go:477 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
+#: lxc/info.go:203
+#, c-format
+msgid "IsSM: %s (%s)"
+msgstr ""
+
 #: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:422
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
-#: lxc/storage_volume.go:1122
+#: lxc/list.go:446 lxc/network.go:943 lxc/operation.go:164
+#: lxc/storage_volume.go:1123
 msgid "LOCATION"
 msgstr ""
 
@@ -1472,7 +1481,7 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:102
+#: lxc/cluster.go:103
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
@@ -1495,15 +1504,15 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:889 lxc/network.go:890
+#: lxc/network.go:890 lxc/network.go:891
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:97 lxc/alias.go:98
+#: lxc/alias.go:98 lxc/alias.go:99
 msgid "List aliases"
 msgstr ""
 
-#: lxc/cluster.go:65 lxc/cluster.go:66
+#: lxc/cluster.go:66 lxc/cluster.go:67
 msgid "List all the cluster members"
 msgstr ""
 
@@ -1515,7 +1524,7 @@ msgstr ""
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:99 lxc/operation.go:100
+#: lxc/operation.go:100 lxc/operation.go:101
 msgid "List background operations"
 msgstr ""
 
@@ -1523,7 +1532,7 @@ msgstr ""
 msgid "List container devices"
 msgstr ""
 
-#: lxc/config_template.go:234 lxc/config_template.go:235
+#: lxc/config_template.go:235 lxc/config_template.go:236
 msgid "List container file templates"
 msgstr ""
 
@@ -1596,11 +1605,11 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:147
+#: lxc/image_alias.go:148
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:149
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1637,11 +1646,11 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:574 lxc/profile.go:575
+#: lxc/profile.go:575 lxc/profile.go:576
 msgid "List profiles"
 msgstr ""
 
-#: lxc/project.go:381 lxc/project.go:382
+#: lxc/project.go:382 lxc/project.go:383
 msgid "List projects"
 msgstr ""
 
@@ -1649,28 +1658,28 @@ msgstr ""
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:446 lxc/remote.go:447
+#: lxc/remote.go:447 lxc/remote.go:448
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:113 lxc/config_trust.go:114
+#: lxc/config_trust.go:114 lxc/config_trust.go:115
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:21 lxc/operation.go:22
+#: lxc/operation.go:22 lxc/operation.go:23
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:424
+#: lxc/info.go:440
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:580
+#: lxc/info.go:596
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:936
+#: lxc/network.go:938
 msgid "MAC ADDRESS"
 msgstr ""
 
@@ -1679,11 +1688,16 @@ msgstr ""
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:867
+#: lxc/info.go:207
+#, c-format
+msgid "MAD: %s (%s)"
+msgstr ""
+
+#: lxc/network.go:868
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:127
+#: lxc/cluster.go:129
 msgid "MESSAGE"
 msgstr ""
 
@@ -1704,11 +1718,11 @@ msgstr ""
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:26 lxc/cluster.go:27
+#: lxc/cluster.go:27 lxc/cluster.go:28
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:19 lxc/alias.go:20
+#: lxc/alias.go:20 lxc/alias.go:21
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1720,7 +1734,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:26 lxc/config_template.go:27
+#: lxc/config_template.go:27 lxc/config_template.go:28
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1732,7 +1746,7 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:22 lxc/image_alias.go:23
+#: lxc/image_alias.go:23 lxc/image_alias.go:24
 msgid "Manage image aliases"
 msgstr ""
 
@@ -1759,11 +1773,11 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:26 lxc/profile.go:27
+#: lxc/profile.go:27 lxc/profile.go:28
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:26 lxc/project.go:27
+#: lxc/project.go:27 lxc/project.go:28
 msgid "Manage projects"
 msgstr ""
 
@@ -1783,42 +1797,42 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:31 lxc/remote.go:32
+#: lxc/remote.go:32 lxc/remote.go:33
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:26 lxc/config_trust.go:27
+#: lxc/config_trust.go:27 lxc/config_trust.go:28
 msgid "Manage trusted clients"
 msgstr ""
 
-#: lxc/info.go:135 lxc/info.go:204
+#: lxc/info.go:135 lxc/info.go:220
 #, c-format
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:310
+#: lxc/cluster.go:312
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:223
+#: lxc/cluster.go:225
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:498
+#: lxc/info.go:514
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:502
+#: lxc/info.go:518
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:514
+#: lxc/info.go:530
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/info.go:322
+#: lxc/info.go:338
 msgid "Memory:"
 msgstr ""
 
@@ -1835,13 +1849,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:88 lxc/config_template.go:131
-#: lxc/config_template.go:173 lxc/config_template.go:260
-#: lxc/config_template.go:317 lxc/profile.go:196 lxc/profile.go:657
+#: lxc/config_template.go:89 lxc/config_template.go:132
+#: lxc/config_template.go:174 lxc/config_template.go:261
+#: lxc/config_template.go:319 lxc/profile.go:197 lxc/profile.go:659
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:123
+#: lxc/profile.go:124
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1853,34 +1867,34 @@ msgstr ""
 
 #: lxc/network.go:131 lxc/network.go:204 lxc/network.go:349 lxc/network.go:399
 #: lxc/network.go:484 lxc/network.go:589 lxc/network.go:694 lxc/network.go:752
-#: lxc/network.go:915 lxc/network.go:982 lxc/network.go:1037
-#: lxc/network.go:1104
+#: lxc/network.go:916 lxc/network.go:984 lxc/network.go:1039
+#: lxc/network.go:1106
 msgid "Missing network name"
 msgstr ""
 
 #: lxc/storage.go:186 lxc/storage.go:256 lxc/storage.go:357 lxc/storage.go:413
-#: lxc/storage.go:609 lxc/storage.go:681 lxc/storage_volume.go:163
+#: lxc/storage.go:610 lxc/storage.go:682 lxc/storage_volume.go:163
 #: lxc/storage_volume.go:242 lxc/storage_volume.go:487
 #: lxc/storage_volume.go:563 lxc/storage_volume.go:639
 #: lxc/storage_volume.go:721 lxc/storage_volume.go:820
 #: lxc/storage_volume.go:1003 lxc/storage_volume.go:1094
-#: lxc/storage_volume.go:1197 lxc/storage_volume.go:1302
-#: lxc/storage_volume.go:1382 lxc/storage_volume.go:1504
-#: lxc/storage_volume.go:1575
+#: lxc/storage_volume.go:1198 lxc/storage_volume.go:1303
+#: lxc/storage_volume.go:1383 lxc/storage_volume.go:1505
+#: lxc/storage_volume.go:1576
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:322 lxc/profile.go:376 lxc/profile.go:450 lxc/profile.go:550
-#: lxc/profile.go:733 lxc/profile.go:786 lxc/profile.go:842
+#: lxc/profile.go:323 lxc/profile.go:377 lxc/profile.go:451 lxc/profile.go:551
+#: lxc/profile.go:735 lxc/profile.go:788 lxc/profile.go:844
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:109 lxc/project.go:178 lxc/project.go:256 lxc/project.go:356
-#: lxc/project.go:490 lxc/project.go:548 lxc/project.go:634
+#: lxc/project.go:110 lxc/project.go:179 lxc/project.go:257 lxc/project.go:357
+#: lxc/project.go:492 lxc/project.go:550 lxc/project.go:636
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:267
+#: lxc/profile.go:268
 msgid "Missing source profile name"
 msgstr ""
 
@@ -1892,7 +1906,7 @@ msgstr ""
 msgid "Missing target directory"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:241
 #, c-format
 msgid "Model: %s"
 msgstr ""
@@ -1926,7 +1940,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
+#: lxc/storage_volume.go:1141 lxc/storage_volume.go:1142
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1947,31 +1961,31 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:123 lxc/list.go:422 lxc/network.go:865 lxc/profile.go:617
-#: lxc/project.go:446 lxc/remote.go:504 lxc/storage.go:556
-#: lxc/storage_volume.go:1117
+#: lxc/cluster.go:125 lxc/list.go:423 lxc/network.go:866 lxc/profile.go:619
+#: lxc/project.go:448 lxc/remote.go:506 lxc/storage.go:557
+#: lxc/storage_volume.go:1118
 msgid "NAME"
 msgstr ""
 
-#: lxc/info.go:364
+#: lxc/info.go:380
 msgid "NIC:"
 msgstr ""
 
-#: lxc/info.go:367
+#: lxc/info.go:383
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
-#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
+#: lxc/network.go:851 lxc/operation.go:142 lxc/project.go:427
+#: lxc/project.go:432 lxc/remote.go:469 lxc/remote.go:474
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:219 lxc/info.go:273
+#: lxc/info.go:88 lxc/info.go:150 lxc/info.go:235 lxc/info.go:289
 #, c-format
 msgid "NUMA node: %v"
 msgstr ""
 
-#: lxc/info.go:331
+#: lxc/info.go:347
 msgid "NUMA nodes:\n"
 msgstr ""
 
@@ -1984,12 +1998,12 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:770
+#: lxc/info.go:438 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
-#: lxc/info.go:259
+#: lxc/info.go:275
 #, c-format
 msgid "Name: %v"
 msgstr ""
@@ -2009,7 +2023,7 @@ msgstr ""
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:992
+#: lxc/network.go:994
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2018,7 +2032,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:784
+#: lxc/info.go:547 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2055,7 +2069,7 @@ msgstr ""
 msgid "No value found in %q"
 msgstr ""
 
-#: lxc/info.go:333
+#: lxc/info.go:349
 #, c-format
 msgid "Node %d:\n"
 msgstr ""
@@ -2064,11 +2078,11 @@ msgstr ""
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1512
+#: lxc/storage_volume.go:1513
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:142
+#: lxc/remote.go:143
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
@@ -2076,11 +2090,11 @@ msgstr ""
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:615 lxc/network.go:1052
+#: lxc/network.go:615 lxc/network.go:1054
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:81
+#: lxc/operation.go:82
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2098,39 +2112,39 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:626
+#: lxc/list.go:627
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:425
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:423
+#: lxc/list.go:424
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:425 lxc/project.go:448
+#: lxc/list.go:426 lxc/project.go:450
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:506
+#: lxc/remote.go:508
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:940 lxc/remote.go:508
+#: lxc/image.go:940 lxc/remote.go:510
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:787
+#: lxc/info.go:541 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:788
+#: lxc/info.go:542 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/info.go:242
+#: lxc/info.go:258
 msgid "Partitions:"
 msgstr ""
 
@@ -2147,7 +2161,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:443
+#: lxc/info.go:459
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2161,13 +2175,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:640 lxc/profile.go:497 lxc/project.go:303 lxc/storage.go:303
+#: lxc/network.go:640 lxc/profile.go:498 lxc/project.go:304 lxc/storage.go:303
 #: lxc/storage_volume.go:918 lxc/storage_volume.go:948
 msgid "Press enter to open the editor again"
 msgstr ""
 
 #: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144
-#: lxc/config_template.go:202 lxc/image.go:406
+#: lxc/config_template.go:203 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2187,7 +2201,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:467
+#: lxc/info.go:483
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2202,32 +2216,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:145
+#: lxc/profile.go:146
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:335
+#: lxc/profile.go:336
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:386
+#: lxc/profile.go:387
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:667
+#: lxc/profile.go:669
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:692
+#: lxc/profile.go:694
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:743
+#: lxc/profile.go:745
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2240,27 +2254,27 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:226
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:441
+#: lxc/info.go:457
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:132
+#: lxc/project.go:133
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:188
+#: lxc/project.go:189
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:505
+#: lxc/project.go:507
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2269,7 +2283,7 @@ msgstr ""
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:91
+#: lxc/remote.go:92
 msgid "Public image server"
 msgstr ""
 
@@ -2305,7 +2319,7 @@ msgstr ""
 msgid "Pushing %s to %s: %%s"
 msgstr ""
 
-#: lxc/info.go:238 lxc/info.go:247
+#: lxc/info.go:254 lxc/info.go:263
 #, c-format
 msgid "Read-Only: %v"
 msgstr ""
@@ -2314,7 +2328,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1189 lxc/image.go:1190
+#: lxc/image.go:1190 lxc/image.go:1191
 msgid "Refresh images"
 msgstr ""
 
@@ -2323,33 +2337,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1218
+#: lxc/image.go:1219
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:554
+#: lxc/remote.go:556
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
-#: lxc/remote.go:696
+#: lxc/project.go:692 lxc/remote.go:548 lxc/remote.go:610 lxc/remote.go:660
+#: lxc/remote.go:698
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:116
+#: lxc/remote.go:117
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
+#: lxc/remote.go:552 lxc/remote.go:614 lxc/remote.go:702
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:88
+#: lxc/remote.go:89
 msgid "Remote admin password"
 msgstr ""
 
@@ -2357,12 +2371,12 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:427
+#: lxc/info.go:443
 #, c-format
 msgid "Remote: %s"
 msgstr ""
 
-#: lxc/info.go:239
+#: lxc/info.go:255
 #, c-format
 msgid "Removable: %v"
 msgstr ""
@@ -2372,11 +2386,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:242 lxc/cluster.go:243
+#: lxc/cluster.go:244 lxc/cluster.go:245
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:191 lxc/alias.go:192
+#: lxc/alias.go:193 lxc/alias.go:194
 msgid "Remove aliases"
 msgstr ""
 
@@ -2384,24 +2398,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:632 lxc/profile.go:633
+#: lxc/profile.go:634 lxc/profile.go:635
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:587 lxc/remote.go:588
+#: lxc/remote.go:589 lxc/remote.go:590
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:190 lxc/config_trust.go:191
+#: lxc/config_trust.go:192 lxc/config_trust.go:193
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:192 lxc/cluster.go:193
+#: lxc/cluster.go:194 lxc/cluster.go:195
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
-#: lxc/image_alias.go:244
+#: lxc/alias.go:142 lxc/alias.go:143 lxc/image_alias.go:245
+#: lxc/image_alias.go:246
 msgid "Rename aliases"
 msgstr ""
 
@@ -2409,31 +2423,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:957 lxc/network.go:958
+#: lxc/network.go:959 lxc/network.go:960
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:708 lxc/profile.go:709
+#: lxc/profile.go:710 lxc/profile.go:711
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:465 lxc/project.go:466
+#: lxc/project.go:467 lxc/project.go:468
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:525 lxc/remote.go:526
+#: lxc/remote.go:527 lxc/remote.go:528
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1172
+#: lxc/storage_volume.go:1173
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1171
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
+#: lxc/storage_volume.go:1239 lxc/storage_volume.go:1259
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2447,7 +2461,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:464
+#: lxc/info.go:480
 msgid "Resources:"
 msgstr ""
 
@@ -2473,7 +2487,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
+#: lxc/storage_volume.go:1552 lxc/storage_volume.go:1553
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2494,31 +2508,31 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:427
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:563
+#: lxc/storage.go:564
 msgid "SOURCE"
 msgstr ""
 
-#: lxc/info.go:133 lxc/info.go:202
+#: lxc/info.go:133 lxc/info.go:218
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
+#: lxc/cluster.go:128 lxc/list.go:428 lxc/network.go:873 lxc/storage.go:562
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:509
+#: lxc/remote.go:511
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:160
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:430
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2526,19 +2540,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:90
+#: lxc/remote.go:91
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:259
+#: lxc/remote.go:260
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:391
+#: lxc/remote.go:392
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:89
+#: lxc/remote.go:90
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2574,11 +2588,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1007
+#: lxc/network.go:1009
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1008
+#: lxc/network.go:1010
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2587,11 +2601,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:758
+#: lxc/profile.go:760
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:759
+#: lxc/profile.go:761
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2600,11 +2614,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:520
+#: lxc/project.go:522
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:521
+#: lxc/project.go:523
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2613,11 +2627,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:579
+#: lxc/storage.go:580
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:580
+#: lxc/storage.go:581
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2626,11 +2640,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1274
+#: lxc/storage_volume.go:1275
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1275
+#: lxc/storage_volume.go:1276
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2639,7 +2653,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:675 lxc/remote.go:676
+#: lxc/remote.go:677 lxc/remote.go:678
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2675,15 +2689,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:292 lxc/config_template.go:293
+#: lxc/config_template.go:294 lxc/config_template.go:295
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:142 lxc/cluster.go:143
+#: lxc/cluster.go:144 lxc/cluster.go:145
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:177 lxc/operation.go:178
+#: lxc/operation.go:179 lxc/operation.go:180
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2691,7 +2705,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1266 lxc/image.go:1267
+#: lxc/image.go:1267 lxc/image.go:1268
 msgid "Show image properties"
 msgstr ""
 
@@ -2703,27 +2717,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1077 lxc/network.go:1078
+#: lxc/network.go:1079 lxc/network.go:1080
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:817 lxc/profile.go:818
+#: lxc/profile.go:819 lxc/profile.go:820
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:609 lxc/project.go:610
+#: lxc/project.go:611 lxc/project.go:612
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:648 lxc/storage.go:649
+#: lxc/storage.go:649 lxc/storage.go:650
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1350
+#: lxc/storage_volume.go:1351
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1351
+#: lxc/storage_volume.go:1352
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2731,7 +2745,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:410 lxc/remote.go:411
+#: lxc/remote.go:411 lxc/remote.go:412
 msgid "Show the default remote"
 msgstr ""
 
@@ -2743,7 +2757,7 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:652
+#: lxc/storage.go:653
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
@@ -2764,20 +2778,20 @@ msgstr ""
 msgid "Size: %.2fMB"
 msgstr ""
 
-#: lxc/info.go:232 lxc/info.go:248
+#: lxc/info.go:248 lxc/info.go:264
 #, c-format
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
+#: lxc/storage_volume.go:1481 lxc/storage_volume.go:1482
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:545
+#: lxc/info.go:561
 msgid "Snapshots:"
 msgstr ""
 
-#: lxc/info.go:316
+#: lxc/info.go:332
 #, c-format
 msgid "Socket %d:"
 msgstr ""
@@ -2805,7 +2819,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:435
+#: lxc/info.go:451
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2878,28 +2892,28 @@ msgstr ""
 msgid "Supported ports: %s"
 msgstr ""
 
-#: lxc/info.go:506
+#: lxc/info.go:522
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:510
+#: lxc/info.go:526
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:662 lxc/project.go:663
+#: lxc/project.go:664 lxc/project.go:665
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:637 lxc/remote.go:638
+#: lxc/remote.go:639 lxc/remote.go:640
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:124
+#: lxc/alias.go:126
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
-#: lxc/storage_volume.go:1116
+#: lxc/list.go:429 lxc/network.go:867 lxc/network.go:940 lxc/operation.go:158
+#: lxc/storage_volume.go:1117
 msgid "TYPE"
 msgstr ""
 
@@ -2969,7 +2983,7 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
-#: lxc/info.go:274
+#: lxc/info.go:290
 msgid "Threads:"
 msgstr ""
 
@@ -2998,11 +3012,11 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:293 lxc/config.go:418 lxc/config.go:536 lxc/config.go:617
-#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
+#: lxc/copy.go:116 lxc/info.go:309 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
-#: lxc/info.go:327 lxc/info.go:338 lxc/info.go:342 lxc/info.go:348
+#: lxc/info.go:343 lxc/info.go:354 lxc/info.go:358 lxc/info.go:364
 #, c-format
 msgid "Total: %v"
 msgstr ""
@@ -3012,7 +3026,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1145
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3039,16 +3053,16 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:245
 #, c-format
 msgid "Type: %s"
 msgstr ""
 
-#: lxc/info.go:437
+#: lxc/info.go:453
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:439
+#: lxc/info.go:455
 msgid "Type: persistent"
 msgstr ""
 
@@ -3056,12 +3070,12 @@ msgstr ""
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:124 lxc/remote.go:505
+#: lxc/cluster.go:126 lxc/remote.go:507
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
-#: lxc/storage_volume.go:1119
+#: lxc/network.go:870 lxc/profile.go:620 lxc/project.go:451 lxc/storage.go:566
+#: lxc/storage_volume.go:1120
 msgid "USED BY"
 msgstr ""
 
@@ -3075,7 +3089,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:959 lxc/list.go:475
+#: lxc/image.go:959 lxc/list.go:476
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3097,23 +3111,23 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1139 lxc/network.go:1140
+#: lxc/network.go:1141 lxc/network.go:1142
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:871 lxc/profile.go:872
+#: lxc/profile.go:873 lxc/profile.go:874
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:580 lxc/project.go:581
+#: lxc/project.go:582 lxc/project.go:583
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:732 lxc/storage.go:733
+#: lxc/storage.go:733 lxc/storage.go:734
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
+#: lxc/storage_volume.go:1450 lxc/storage_volume.go:1451
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
@@ -3127,7 +3141,7 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
-#: lxc/info.go:326 lxc/info.go:337 lxc/info.go:341 lxc/info.go:347
+#: lxc/info.go:342 lxc/info.go:353 lxc/info.go:357 lxc/info.go:363
 #, c-format
 msgid "Used: %v"
 msgstr ""
@@ -3136,7 +3150,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:274 lxc/delete.go:47
+#: lxc/cluster.go:276 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3145,12 +3159,12 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
-#: lxc/info.go:137 lxc/info.go:206
+#: lxc/info.go:137 lxc/info.go:222
 #, c-format
 msgid "VFs: %d"
 msgstr ""
 
-#: lxc/info.go:255
+#: lxc/info.go:271
 #, c-format
 msgid "Vendor: %v"
 msgstr ""
@@ -3160,7 +3174,12 @@ msgstr ""
 msgid "Vendor: %v (%v)"
 msgstr ""
 
-#: lxc/info.go:235
+#: lxc/info.go:211
+#, c-format
+msgid "Verb: %s (%s)"
+msgstr ""
+
+#: lxc/info.go:251
 #, c-format
 msgid "WWN: %s"
 msgstr ""
@@ -3183,8 +3202,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
+#: lxc/network.go:853 lxc/operation.go:144 lxc/project.go:429
+#: lxc/project.go:434 lxc/remote.go:471 lxc/remote.go:476
 msgid "YES"
 msgstr ""
 
@@ -3204,15 +3223,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:50
+#: lxc/alias.go:51
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:54
+#: lxc/config_trust.go:55
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:97
+#: lxc/profile.go:98
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3220,15 +3239,15 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:81
+#: lxc/remote.go:82
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:18 lxc/image_alias.go:21
+#: lxc/alias.go:19 lxc/image_alias.go:22
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:159
+#: lxc/profile.go:160
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
@@ -3252,7 +3271,7 @@ msgid ""
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:25
+#: lxc/cluster.go:26
 msgid "cluster"
 msgstr ""
 
@@ -3272,7 +3291,7 @@ msgstr ""
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:239
+#: lxc/profile.go:240
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3280,11 +3299,11 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:54
+#: lxc/image_alias.go:55
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:62
+#: lxc/config_template.go:63
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3300,27 +3319,27 @@ msgstr ""
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:296
+#: lxc/profile.go:297
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:82
+#: lxc/project.go:83
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:438
+#: lxc/project.go:439
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:498
+#: lxc/remote.go:499
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:100
+#: lxc/image_alias.go:101
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:104
+#: lxc/config_template.go:105
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3342,7 +3361,7 @@ msgstr ""
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:48
+#: lxc/operation.go:49
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
@@ -3354,11 +3373,11 @@ msgstr ""
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:349
+#: lxc/profile.go:350
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:146
+#: lxc/project.go:147
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
@@ -3398,7 +3417,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:147
+#: lxc/config_template.go:148
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3422,11 +3441,11 @@ msgstr ""
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:400
+#: lxc/profile.go:401
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:210
+#: lxc/project.go:211
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3434,7 +3453,7 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:326
+#: lxc/cluster.go:328
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
@@ -3451,7 +3470,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:556
+#: lxc/info.go:572
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3486,11 +3505,11 @@ msgstr ""
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:524
+#: lxc/profile.go:525
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:330
+#: lxc/project.go:331
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3498,7 +3517,7 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:409
+#: lxc/remote.go:410
 msgid "get-default"
 msgstr ""
 
@@ -3544,12 +3563,12 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:95 lxc/remote.go:444
+#: lxc/alias.go:96 lxc/remote.go:445
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:111 lxc/network.go:803
-#: lxc/operation.go:97 lxc/profile.go:572 lxc/project.go:379 lxc/storage.go:504
+#: lxc/cluster.go:64 lxc/config_trust.go:112 lxc/network.go:803
+#: lxc/operation.go:98 lxc/profile.go:573 lxc/project.go:380 lxc/storage.go:504
 msgid "list [<remote>:]"
 msgstr ""
 
@@ -3557,11 +3576,11 @@ msgstr ""
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:145
+#: lxc/image_alias.go:146
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
-#: lxc/config_template.go:233
+#: lxc/config_template.go:234
 msgid "list [<remote>:]<container>"
 msgstr ""
 
@@ -3573,23 +3592,23 @@ msgstr ""
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:888
+#: lxc/network.go:889
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:54
+#: lxc/alias.go:55
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:194
+#: lxc/alias.go:196
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:143
+#: lxc/alias.go:145
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3709,13 +3728,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:180
+#: lxc/operation.go:182
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:164
+#: lxc/profile.go:165
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3727,13 +3746,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:405
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:214
+#: lxc/project.go:215
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3772,7 +3791,7 @@ msgid ""
 "    Update a storage volume using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:1353
+#: lxc/storage_volume.go:1354
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3795,7 +3814,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1138
+#: lxc/storage_volume.go:1139
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3817,11 +3836,11 @@ msgstr ""
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:252
+#: lxc/remote.go:253
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:20
+#: lxc/operation.go:21
 msgid "operation"
 msgstr ""
 
@@ -3837,11 +3856,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:25
+#: lxc/profile.go:26
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:25
+#: lxc/project.go:26
 msgid "project"
 msgstr ""
 
@@ -3867,27 +3886,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1188
+#: lxc/image.go:1189
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:30
+#: lxc/remote.go:31
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:189
+#: lxc/alias.go:191
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:585
+#: lxc/remote.go:587
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:188
+#: lxc/config_trust.go:190
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:631
+#: lxc/profile.go:633
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3895,19 +3914,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:240
+#: lxc/cluster.go:242
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:138
+#: lxc/alias.go:140
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:523
+#: lxc/remote.go:525
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:241
+#: lxc/image_alias.go:243
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3915,25 +3934,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:190
+#: lxc/cluster.go:192
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:955
+#: lxc/network.go:957
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1170
+#: lxc/storage_volume.go:1171
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:706
+#: lxc/profile.go:708
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:463
+#: lxc/project.go:465
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3945,7 +3964,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1550
+#: lxc/storage_volume.go:1551
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3953,23 +3972,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1006
+#: lxc/network.go:1008
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:578
+#: lxc/storage.go:579
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1273
+#: lxc/storage_volume.go:1274
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:757
+#: lxc/profile.go:759
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:519
+#: lxc/project.go:521
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3977,7 +3996,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:674
+#: lxc/remote.go:676
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3985,7 +4004,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:291
+#: lxc/config_template.go:293
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3993,35 +4012,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1265
+#: lxc/image.go:1266
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:141
+#: lxc/cluster.go:143
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1076
+#: lxc/network.go:1078
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:176
+#: lxc/operation.go:178
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:647
+#: lxc/storage.go:648
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1349
+#: lxc/storage_volume.go:1350
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:816
+#: lxc/profile.go:818
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:608
+#: lxc/project.go:610
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4033,7 +4052,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1479
+#: lxc/storage_volume.go:1480
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
@@ -4045,11 +4064,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:560
+#: lxc/info.go:576
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:562
+#: lxc/info.go:578
 msgid "stateless"
 msgstr ""
 
@@ -4061,20 +4080,20 @@ msgstr ""
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:636
+#: lxc/remote.go:638
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:661
+#: lxc/project.go:663
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:552
+#: lxc/info.go:568
 #, c-format
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:25
+#: lxc/config_template.go:26
 msgid "template"
 msgstr ""
 
@@ -4082,7 +4101,7 @@ msgstr ""
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:25
+#: lxc/config_trust.go:26
 msgid "trust"
 msgstr ""
 
@@ -4094,23 +4113,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1138
+#: lxc/network.go:1140
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:731
+#: lxc/storage.go:732
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1448
+#: lxc/storage_volume.go:1449
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:870
+#: lxc/profile.go:872
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:579
+#: lxc/project.go:581
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4130,11 +4149,11 @@ msgstr ""
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:258
+#: lxc/remote.go:259
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:273 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
+#: lxc/cluster.go:275 lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829
 #: lxc/image.go:995
 msgid "yes"
 msgstr ""


More information about the lxc-devel mailing list