[lxc-devel] [lxd/master] Export operation location

stgraber on Github lxc-bot at linuxcontainers.org
Wed Mar 20 18:39:34 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/20190320/cc21890f/attachment-0001.bin>
-------------- next part --------------
From 55fcda838f549203d4cd52d19eb9166b0ed31945 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Wed, 20 Mar 2019 11:25:03 -0700
Subject: [PATCH 1/4] shared/api: Add Location field to operations
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/operation.go | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/shared/api/operation.go b/shared/api/operation.go
index c6696205bd..98774b50d8 100644
--- a/shared/api/operation.go
+++ b/shared/api/operation.go
@@ -17,4 +17,7 @@ type Operation struct {
 	Metadata    map[string]interface{} `json:"metadata" yaml:"metadata"`
 	MayCancel   bool                   `json:"may_cancel" yaml:"may_cancel"`
 	Err         string                 `json:"err" yaml:"err"`
+
+	// API extension: operation_location
+	Location string `json:"location" yaml:"location"`
 }

From e262092a72e61768c55a96463fab5863194e179e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Wed, 20 Mar 2019 11:25:39 -0700
Subject: [PATCH 2/4] lxd/operations: Fill the Location field
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/operations.go | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/lxd/operations.go b/lxd/operations.go
index 05d81e24dc..8737a7aeae 100644
--- a/lxd/operations.go
+++ b/lxd/operations.go
@@ -309,6 +309,17 @@ func (op *operation) Render() (string, *api.Operation, error) {
 		resources = tmpResources
 	}
 
+	// Local server name
+	var err error
+	var serverName string
+	err = op.cluster.Transaction(func(tx *db.ClusterTx) error {
+		serverName, err = tx.NodeName()
+		return err
+	})
+	if err != nil {
+		return "", nil, err
+	}
+
 	return op.url, &api.Operation{
 		ID:          op.id,
 		Class:       op.class.String(),
@@ -321,6 +332,7 @@ func (op *operation) Render() (string, *api.Operation, error) {
 		Metadata:    op.metadata,
 		MayCancel:   op.mayCancel(),
 		Err:         op.err,
+		Location:    serverName,
 	}, nil
 }
 

From 5a61758304e28abac2a18530e480d91c7b69025c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Wed, 20 Mar 2019 11:28:28 -0700
Subject: [PATCH 3/4] lxc/operation: Show location column
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/operation.go | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/lxc/operation.go b/lxc/operation.go
index e950227121..97d0fea2d1 100644
--- a/lxc/operation.go
+++ b/lxc/operation.go
@@ -143,20 +143,29 @@ func (c *cmdOperationList) Run(cmd *cobra.Command, args []string) error {
 			cancelable = i18n.G("YES")
 		}
 
-		data = append(data, []string{op.ID, strings.ToUpper(op.Class), op.Description, strings.ToUpper(op.Status), cancelable, op.CreatedAt.UTC().Format("2006/01/02 15:04 UTC")})
+		entry := []string{op.ID, strings.ToUpper(op.Class), op.Description, strings.ToUpper(op.Status), cancelable, op.CreatedAt.UTC().Format("2006/01/02 15:04 UTC")}
+		if resource.server.IsClustered() {
+			entry = append(entry, op.Location)
+		}
+
+		data = append(data, entry)
 	}
 
 	table := tablewriter.NewWriter(os.Stdout)
 	table.SetAutoWrapText(false)
 	table.SetAlignment(tablewriter.ALIGN_LEFT)
 	table.SetRowLine(true)
-	table.SetHeader([]string{
+	header := []string{
 		i18n.G("ID"),
 		i18n.G("TYPE"),
 		i18n.G("DESCRIPTION"),
 		i18n.G("STATUS"),
 		i18n.G("CANCELABLE"),
-		i18n.G("CREATED")})
+		i18n.G("CREATED")}
+	if resource.server.IsClustered() {
+		header = append(header, i18n.G("LOCATION"))
+	}
+	table.SetHeader(header)
 	sort.Sort(byName(data))
 	table.AppendBulk(data)
 	table.Render()

From a6885e4975427d5c81b770bfaea2a8c4adad199a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Wed, 20 Mar 2019 11:28:50 -0700
Subject: [PATCH 4/4] 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/de.po      | 25 +++++++++++++------------
 po/el.po      | 25 +++++++++++++------------
 po/es.po      | 25 +++++++++++++------------
 po/fa.po      | 25 +++++++++++++------------
 po/fi.po      | 25 +++++++++++++------------
 po/fr.po      | 25 +++++++++++++------------
 po/hi.po      | 25 +++++++++++++------------
 po/id.po      | 25 +++++++++++++------------
 po/it.po      | 25 +++++++++++++------------
 po/ja.po      | 25 +++++++++++++------------
 po/ko.po      | 25 +++++++++++++------------
 po/lxd.pot    | 24 ++++++++++++------------
 po/nb_NO.po   | 25 +++++++++++++------------
 po/nl.po      | 25 +++++++++++++------------
 po/pa.po      | 25 +++++++++++++------------
 po/pl.po      | 25 +++++++++++++------------
 po/pt_BR.po   | 25 +++++++++++++------------
 po/ru.po      | 25 +++++++++++++------------
 po/sr.po      | 25 +++++++++++++------------
 po/sv.po      | 25 +++++++++++++------------
 po/tr.po      | 25 +++++++++++++------------
 po/uk.po      | 25 +++++++++++++------------
 po/zh_Hans.po | 25 +++++++++++++------------
 23 files changed, 298 insertions(+), 276 deletions(-)

diff --git a/po/de.po b/po/de.po
index 69f9b63d3e..72bbb800a5 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -503,7 +503,7 @@ msgstr "Bytes empfangen"
 msgid "Bytes sent"
 msgstr "Bytes gesendet"
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -528,7 +528,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 #, fuzzy
 msgid "CREATED"
 msgstr "ERSTELLT AM"
@@ -846,7 +846,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr "BESCHREIBUNG"
 
@@ -934,7 +934,7 @@ msgstr "Kein Zertifikat für diese Verbindung"
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1347,7 +1347,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1528,7 +1528,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2570,7 +2571,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2683,7 +2684,7 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2892,7 +2893,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3749,7 +3750,7 @@ msgstr ""
 "\n"
 "lxc move <Quelle> <Ziel>\n"
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -4093,7 +4094,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/el.po b/po/el.po
index c00d155a9b..126c2e3280 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -373,7 +373,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -398,7 +398,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -695,7 +695,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -779,7 +779,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1176,7 +1176,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1353,7 +1353,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2332,7 +2333,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2437,7 +2438,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2637,7 +2638,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3429,7 +3430,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3725,7 +3726,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/es.po b/po/es.po
index 3077f401ed..2fcf100cf8 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: 2019-02-26 09:18+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/"
@@ -446,7 +446,7 @@ msgstr "Bytes recibidos"
 msgid "Bytes sent"
 msgstr "Bytes enviados"
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -470,7 +470,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr "CREADO"
 
@@ -769,7 +769,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr "DESCRIPCIÓN"
 
@@ -853,7 +853,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1251,7 +1251,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1429,7 +1429,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2409,7 +2410,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2514,7 +2515,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2714,7 +2715,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3508,7 +3509,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3804,7 +3805,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/fa.po b/po/fa.po
index 8eb1775296..da4c85fea9 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/fi.po b/po/fi.po
index a1ec3b5341..f761fa84cd 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/fr.po b/po/fr.po
index 22e159df55..34d2d1d584 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -494,7 +494,7 @@ msgstr "Octets reçus"
 msgid "Bytes sent"
 msgstr "Octets émis"
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -518,7 +518,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 #, fuzzy
 msgid "CREATED"
 msgstr "CRÉÉ À"
@@ -855,7 +855,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
 
@@ -944,7 +944,7 @@ msgstr "Copie de l'image : %s"
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1367,7 +1367,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr "NOM"
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 #, fuzzy
 msgid "ID"
 msgstr "PID"
@@ -1554,7 +1554,8 @@ msgstr "Garder l'image à jour après la copie initiale"
 msgid "LAST USED AT"
 msgstr "DERNIÈRE UTILISATION À"
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2650,7 +2651,7 @@ msgstr "ÉTAT"
 msgid "STATIC"
 msgstr "STATIQUE"
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 #, fuzzy
 msgid "STATUS"
 msgstr "ÉTAT"
@@ -2769,7 +2770,7 @@ msgstr "L'arrêt du conteneur a échoué !"
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2985,7 +2986,7 @@ msgstr "impossible de supprimer le serveur distant par défaut"
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr "TYPE"
@@ -3883,7 +3884,7 @@ msgstr ""
 "lxc move <container>/<old snapshot name> <container>/<new snapshot name>\n"
 "    Renomme un instantané."
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -4248,7 +4249,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/hi.po b/po/hi.po
index a87fdd70c5..d5c780957b 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/id.po b/po/id.po
index 53e0539ae9..b81563c5cd 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/it.po b/po/it.po
index 46039ac449..189bcfe91d 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -411,7 +411,7 @@ msgstr "Bytes ricevuti"
 msgid "Bytes sent"
 msgstr "Byte inviati"
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -435,7 +435,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 #, fuzzy
 msgid "CREATED"
 msgstr "CREATO IL"
@@ -735,7 +735,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr "DESCRIZIONE"
 
@@ -819,7 +819,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1218,7 +1218,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1398,7 +1398,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2382,7 +2383,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2487,7 +2488,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2689,7 +2690,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3486,7 +3487,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3782,7 +3783,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/ja.po b/po/ja.po
index 78aef3c49d..f476b7d71e 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: 2019-02-16 19:26+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -380,7 +380,7 @@ msgstr "受信バイト数"
 msgid "Bytes sent"
 msgstr "送信バイト数"
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -404,7 +404,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -715,7 +715,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -799,7 +799,7 @@ msgstr "ストレージボリュームを削除します"
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1221,7 +1221,7 @@ msgstr "ストレージボリュームの設定値を取得します"
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr "ID"
 
@@ -1407,7 +1407,8 @@ msgstr "最初にコピーした後も常にイメージを最新の状態に保
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2498,7 +2499,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2603,7 +2604,7 @@ msgstr "コンテナのファイルテンプレートの内容を表示します
 msgid "Show details of a cluster member"
 msgstr "クラスタメンバの詳細を表示します"
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr "バックグラウンド操作の詳細を表示します"
 
@@ -2803,7 +2804,7 @@ msgstr "デフォルトのリモートを切り替えます"
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3686,7 +3687,7 @@ msgstr ""
 "lxc move <container>/<old snapshot name> <container>/<new snapshot name>\n"
 "    スナップショットをリネームします。"
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -4027,7 +4028,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/ko.po b/po/ko.po
index 4891f6ad1b..039d1113c8 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/lxd.pot b/po/lxd.pot
index d82f527b04..eb3300b2e5 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-03-19 15:46-0700\n"
+        "POT-Creation-Date: 2019-03-20 11:28-0700\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"
@@ -359,7 +359,7 @@ msgstr  ""
 msgid   "Bytes sent"
 msgstr  ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid   "CANCELABLE"
 msgstr  ""
 
@@ -383,7 +383,7 @@ msgstr  ""
 msgid   "CPUs:"
 msgstr  ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid   "CREATED"
 msgstr  ""
 
@@ -663,7 +663,7 @@ msgstr  ""
 msgid   "DATABASE"
 msgstr  ""
 
-#: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871 lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871 lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid   "DESCRIPTION"
 msgstr  ""
 
@@ -719,7 +719,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:23 lxc/alias.go:55 lxc/alias.go:99 lxc/alias.go:147 lxc/alias.go:198 lxc/cluster.go:29 lxc/cluster.go:66 lxc/cluster.go:149 lxc/cluster.go:199 lxc/cluster.go:249 lxc/cluster.go:334 lxc/config.go:32 lxc/config.go:91 lxc/config.go:374 lxc/config.go:455 lxc/config.go:567 lxc/config.go:686 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:589 lxc/config_device.go:657 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 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:42 lxc/image.go:131 lxc/image.go:265 lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793 lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26 lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149 lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378 lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729 lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004 lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101 lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167 lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407 lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754 lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30 lxc/project.go:87 lxc/project.go:152 lxc/project.go:215 lxc/project.go:335 lxc/project.go:383 lxc/project.go:472 lxc/project.go:527 lxc/project.go:587 lxc/project.go:616 lxc/project.go:669 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:88 lxc/remote.go:416 lxc/remote.go:452 lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:680 lxc/remote.go:718 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:506 lxc/storage.go:588 lxc/storage.go:660 lxc/storage.go:744 lxc/storage_volume.go:34 lxc/storage_volume.go:141 lxc/storage_volume.go:220 lxc/storage_volume.go:303 lxc/storage_volume.go:464 lxc/storage_volume.go:541 lxc/storage_volume.go:617 lxc/storage_volume.go:699 lxc/storage_volume.go:780 lxc/storage_volume.go:980 lxc/storage_volume.go:1069 lxc/storage_volume.go:1148 lxc/storage_volume.go:1179 lxc/storage_volume.go:1282 lxc/storage_volume.go:1359 lxc/storage_volume.go:1458 lxc/storage_volume.go:1489 lxc/storage_volume.go:1560 lxc/version.go:22
+#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:23 lxc/alias.go:55 lxc/alias.go:99 lxc/alias.go:147 lxc/alias.go:198 lxc/cluster.go:29 lxc/cluster.go:66 lxc/cluster.go:149 lxc/cluster.go:199 lxc/cluster.go:249 lxc/cluster.go:334 lxc/config.go:32 lxc/config.go:91 lxc/config.go:374 lxc/config.go:455 lxc/config.go:567 lxc/config.go:686 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:589 lxc/config_device.go:657 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 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:42 lxc/image.go:131 lxc/image.go:265 lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793 lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26 lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149 lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378 lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729 lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004 lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101 lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167 lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407 lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754 lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30 lxc/project.go:87 lxc/project.go:152 lxc/project.go:215 lxc/project.go:335 lxc/project.go:383 lxc/project.go:472 lxc/project.go:527 lxc/project.go:587 lxc/project.go:616 lxc/project.go:669 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:88 lxc/remote.go:416 lxc/remote.go:452 lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:680 lxc/remote.go:718 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:506 lxc/storage.go:588 lxc/storage.go:660 lxc/storage.go:744 lxc/storage_volume.go:34 lxc/storage_volume.go:141 lxc/storage_volume.go:220 lxc/storage_volume.go:303 lxc/storage_volume.go:464 lxc/storage_volume.go:541 lxc/storage_volume.go:617 lxc/storage_volume.go:699 lxc/storage_volume.go:780 lxc/storage_volume.go:980 lxc/storage_volume.go:1069 lxc/storage_volume.go:1148 lxc/storage_volume.go:1179 lxc/storage_volume.go:1282 lxc/storage_volume.go:1359 lxc/storage_volume.go:1458 lxc/storage_volume.go:1489 lxc/storage_volume.go:1560 lxc/version.go:22
 msgid   "Description"
 msgstr  ""
 
@@ -1081,7 +1081,7 @@ msgstr  ""
 msgid   "HOSTNAME"
 msgstr  ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid   "ID"
 msgstr  ""
 
@@ -1253,7 +1253,7 @@ msgstr  ""
 msgid   "LAST USED AT"
 msgstr  ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166 lxc/storage_volume.go:1125
 msgid   "LOCATION"
 msgstr  ""
 
@@ -2191,7 +2191,7 @@ msgstr  ""
 msgid   "STATIC"
 msgstr  ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid   "STATUS"
 msgstr  ""
 
@@ -2296,7 +2296,7 @@ msgstr  ""
 msgid   "Show details of a cluster member"
 msgstr  ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid   "Show details on a background operation"
 msgstr  ""
 
@@ -2496,7 +2496,7 @@ msgstr  ""
 msgid   "TARGET"
 msgstr  ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155 lxc/storage_volume.go:1119
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160 lxc/storage_volume.go:1119
 msgid   "TYPE"
 msgstr  ""
 
@@ -3244,7 +3244,7 @@ msgid   "lxc move [<remote>:]<source container> [<remote>:][<destination contain
         "    Rename a snapshot."
 msgstr  ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid   "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
         "    Show details on that operation UUID"
 msgstr  ""
@@ -3518,7 +3518,7 @@ msgstr  ""
 msgid   "show [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid   "show [<remote>:]<operation>"
 msgstr  ""
 
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 0bd7868d47..6db05b9726 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/nl.po b/po/nl.po
index 81cc2543fa..35d8de8475 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -419,7 +419,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -740,7 +740,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -824,7 +824,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1220,7 +1220,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1397,7 +1397,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2373,7 +2374,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2478,7 +2479,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2678,7 +2679,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3470,7 +3471,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3766,7 +3767,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/pa.po b/po/pa.po
index b24d8b51b2..d54cc6435f 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/pl.po b/po/pl.po
index 0c0005fb6c..36e8f3a55e 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -419,7 +419,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -740,7 +740,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -824,7 +824,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1220,7 +1220,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1397,7 +1397,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2373,7 +2374,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2478,7 +2479,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2678,7 +2679,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3470,7 +3471,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3766,7 +3767,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 62384ec9f7..04ecd6ccdc 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: 2019-02-16 19:26+0000\n"
 "Last-Translator: Renato dos Santos <shazaum at gmail.com>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -490,7 +490,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -514,7 +514,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -811,7 +811,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -895,7 +895,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1293,7 +1293,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1470,7 +1470,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2446,7 +2447,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2552,7 +2553,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2752,7 +2753,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3545,7 +3546,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3841,7 +3842,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/ru.po b/po/ru.po
index 3afbc22b5c..67b6638ea6 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -482,7 +482,7 @@ msgstr "Получено байтов"
 msgid "Bytes sent"
 msgstr "Отправлено байтов"
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -507,7 +507,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 #, fuzzy
 msgid "CREATED"
 msgstr "СОЗДАН"
@@ -811,7 +811,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -898,7 +898,7 @@ msgstr "Копирование образа: %s"
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1299,7 +1299,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1479,7 +1479,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2475,7 +2476,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2582,7 +2583,7 @@ msgstr "Невозможно добавить имя контейнера в с
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2785,7 +2786,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3618,7 +3619,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3954,7 +3955,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/sr.po b/po/sr.po
index 8fe462b03c..a3cb26d501 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/sv.po b/po/sv.po
index 9cce0b7618..0f7525957b 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/tr.po b/po/tr.po
index e58219bb0e..fa76104b36 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/uk.po b/po/uk.po
index 97b9c5985b..545cc6f964 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -394,7 +394,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -691,7 +691,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -775,7 +775,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1171,7 +1171,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1348,7 +1348,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2324,7 +2325,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2429,7 +2430,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2629,7 +2630,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3421,7 +3422,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3717,7 +3718,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index bca2ab874e..6c76695a07 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-03-19 15:46-0700\n"
+"POT-Creation-Date: 2019-03-20 11:28-0700\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/"
@@ -373,7 +373,7 @@ msgstr ""
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:158
+#: lxc/operation.go:163
 msgid "CANCELABLE"
 msgstr ""
 
@@ -397,7 +397,7 @@ msgstr ""
 msgid "CPUs:"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:164
 msgid "CREATED"
 msgstr ""
 
@@ -694,7 +694,7 @@ msgid "DATABASE"
 msgstr ""
 
 #: lxc/image.go:945 lxc/image_alias.go:230 lxc/list.go:462 lxc/network.go:871
-#: lxc/operation.go:156 lxc/storage.go:560 lxc/storage_volume.go:1121
+#: lxc/operation.go:161 lxc/storage.go:560 lxc/storage_volume.go:1121
 msgid "DESCRIPTION"
 msgstr ""
 
@@ -778,7 +778,7 @@ msgstr ""
 #: lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004
 #: lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185
 #: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
+#: lxc/operation.go:186 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167
 #: lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407
 #: lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754
 #: lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30
@@ -1174,7 +1174,7 @@ msgstr ""
 msgid "HOSTNAME"
 msgstr ""
 
-#: lxc/operation.go:154
+#: lxc/operation.go:159
 msgid "ID"
 msgstr ""
 
@@ -1351,7 +1351,8 @@ msgstr ""
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/storage_volume.go:1125
+#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
+#: lxc/storage_volume.go:1125
 msgid "LOCATION"
 msgstr ""
 
@@ -2327,7 +2328,7 @@ msgstr ""
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:157
+#: lxc/operation.go:162
 msgid "STATUS"
 msgstr ""
 
@@ -2432,7 +2433,7 @@ msgstr ""
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:176 lxc/operation.go:177
+#: lxc/operation.go:185 lxc/operation.go:186
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2632,7 +2633,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:155
+#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
 #: lxc/storage_volume.go:1119
 msgid "TYPE"
 msgstr ""
@@ -3424,7 +3425,7 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:179
+#: lxc/operation.go:188
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3720,7 +3721,7 @@ msgstr ""
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:175
+#: lxc/operation.go:184
 msgid "show [<remote>:]<operation>"
 msgstr ""
 


More information about the lxc-devel mailing list