[lxc-devel] [lxd/master] Rework all tables in client

stgraber on Github lxc-bot at linuxcontainers.org
Thu Aug 8 18:00:19 UTC 2019


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 313 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20190808/03ef1bb4/attachment-0001.bin>
-------------- next part --------------
From 0f5751743cabda808b03d4b3295ddbdc2f8759df Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 10:56:50 -0400
Subject: [PATCH 01/17] lxc: Implement generic renderTable function
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/utils.go | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/lxc/utils.go b/lxc/utils.go
index c113c64716..4501f68547 100644
--- a/lxc/utils.go
+++ b/lxc/utils.go
@@ -1,13 +1,17 @@
 package main
 
 import (
+	"encoding/csv"
+	"encoding/json"
 	"fmt"
 	"io/ioutil"
 	"os"
 	"sort"
 	"strings"
 
+	"github.com/olekukonko/tablewriter"
 	"github.com/pkg/errors"
+	"gopkg.in/yaml.v2"
 
 	"github.com/lxc/lxd/client"
 	"github.com/lxc/lxd/shared/api"
@@ -260,3 +264,47 @@ func getConfig(args ...string) (map[string]string, error) {
 
 	return values, nil
 }
+
+func renderTable(format string, header []string, data [][]string, raw interface{}) error {
+	switch format {
+	case listFormatTable:
+		table := tablewriter.NewWriter(os.Stdout)
+		table.SetAutoWrapText(false)
+		table.SetAlignment(tablewriter.ALIGN_LEFT)
+		table.SetRowLine(true)
+		table.SetHeader(header)
+		sort.Sort(byName(data))
+		table.AppendBulk(data)
+		table.Render()
+	case listFormatCSV:
+		sort.Sort(byName(data))
+		data = append(data, []string{})
+		copy(data[1:], data[0:])
+		data[0] = header
+		w := csv.NewWriter(os.Stdout)
+		w.WriteAll(data)
+
+		err := w.Error()
+		if err != nil {
+			return err
+		}
+	case listFormatJSON:
+		enc := json.NewEncoder(os.Stdout)
+
+		err := enc.Encode(raw)
+		if err != nil {
+			return err
+		}
+	case listFormatYAML:
+		out, err := yaml.Marshal(raw)
+		if err != nil {
+			return err
+		}
+
+		fmt.Printf("%s", out)
+	default:
+		return fmt.Errorf(i18n.G("Invalid format %q"), format)
+	}
+
+	return nil
+}

From 4fd753a9d8f5281589b0eb7adfc8697023b87399 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 10:57:03 -0400
Subject: [PATCH 02/17] lxc/remote: Port to renderTable
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/remote.go | 46 ++--------------------------------------------
 1 file changed, 2 insertions(+), 44 deletions(-)

diff --git a/lxc/remote.go b/lxc/remote.go
index f1c02b5409..39f7c5563f 100644
--- a/lxc/remote.go
+++ b/lxc/remote.go
@@ -2,21 +2,16 @@ package main
 
 import (
 	"crypto/x509"
-	"encoding/csv"
-	"encoding/json"
 	"encoding/pem"
 	"fmt"
 	"net"
 	"net/url"
 	"os"
 	"path/filepath"
-	"sort"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"golang.org/x/crypto/ssh/terminal"
-	"gopkg.in/yaml.v2"
 
 	"github.com/lxc/lxd/client"
 	"github.com/lxc/lxd/lxc/config"
@@ -511,47 +506,10 @@ func (c *cmdRemoteList) Run(cmd *cobra.Command, args []string) error {
 		i18n.G("PROTOCOL"),
 		i18n.G("AUTH TYPE"),
 		i18n.G("PUBLIC"),
-		i18n.G("STATIC")}
-
-	switch c.flagFormat {
-	case listFormatTable:
-		table := tablewriter.NewWriter(os.Stdout)
-		table.SetAutoWrapText(false)
-		table.SetAlignment(tablewriter.ALIGN_LEFT)
-		table.SetRowLine(true)
-		table.SetHeader(header)
-		sort.Sort(byName(data))
-		table.AppendBulk(data)
-		table.Render()
-	case listFormatCSV:
-		sort.Sort(byName(data))
-		data = append(data, []string{})
-		copy(data[1:], data[0:])
-		data[0] = header
-		w := csv.NewWriter(os.Stdout)
-		w.WriteAll(data)
-		if err := w.Error(); err != nil {
-			return err
-		}
-	case listFormatJSON:
-		data := conf.Remotes
-		enc := json.NewEncoder(os.Stdout)
-		err := enc.Encode(data)
-		if err != nil {
-			return err
-		}
-	case listFormatYAML:
-		data := conf.Remotes
-		out, err := yaml.Marshal(data)
-		if err != nil {
-			return err
-		}
-		fmt.Printf("%s", out)
-	default:
-		return fmt.Errorf(i18n.G("Invalid format %q"), c.flagFormat)
+		i18n.G("STATIC"),
 	}
 
-	return nil
+	return renderTable(c.flagFormat, header, data, conf.Remotes)
 }
 
 // Rename

From dfd11761f3485cd11bca12f0997e42d51f76295a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 10:57:11 -0400
Subject: [PATCH 03/17] lxc/list: Port to renderTable
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/list.go | 66 ++++++++++-------------------------------------------
 1 file changed, 12 insertions(+), 54 deletions(-)

diff --git a/lxc/list.go b/lxc/list.go
index 6c5636c466..e4e8d47100 100644
--- a/lxc/list.go
+++ b/lxc/list.go
@@ -1,19 +1,14 @@
 package main
 
 import (
-	"encoding/csv"
-	"encoding/json"
 	"fmt"
-	"os"
 	"regexp"
 	"sort"
 	"strconv"
 	"strings"
 	"sync"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
-	"gopkg.in/yaml.v2"
 
 	"github.com/lxc/lxd/client"
 	"github.com/lxc/lxd/lxc/config"
@@ -316,62 +311,25 @@ func (c *cmdList) listContainers(conf *config.Config, d lxd.ContainerServer, cin
 
 func (c *cmdList) showContainers(cts []api.ContainerFull, filters []string, columns []column) error {
 	// Generate the table data
-	tableData := func() [][]string {
-		data := [][]string{}
-		for _, ct := range cts {
-			if !c.shouldShow(filters, &ct.Container) {
-				continue
-			}
-
-			col := []string{}
-			for _, column := range columns {
-				col = append(col, column.Data(ct))
-			}
-			data = append(data, col)
+	data := [][]string{}
+	for _, ct := range cts {
+		if !c.shouldShow(filters, &ct.Container) {
+			continue
 		}
 
-		sort.Sort(byName(data))
-		return data
-	}
-
-	// Deal with various output formats
-	switch c.flagFormat {
-	case listFormatCSV:
-		w := csv.NewWriter(os.Stdout)
-		w.WriteAll(tableData())
-		if err := w.Error(); err != nil {
-			return err
-		}
-	case listFormatTable:
-		headers := []string{}
+		col := []string{}
 		for _, column := range columns {
-			headers = append(headers, column.Name)
+			col = append(col, column.Data(ct))
 		}
+		data = append(data, col)
+	}
 
-		table := tablewriter.NewWriter(os.Stdout)
-		table.SetAutoWrapText(false)
-		table.SetAlignment(tablewriter.ALIGN_LEFT)
-		table.SetRowLine(true)
-		table.SetHeader(headers)
-		table.AppendBulk(tableData())
-		table.Render()
-	case listFormatJSON:
-		enc := json.NewEncoder(os.Stdout)
-		err := enc.Encode(cts)
-		if err != nil {
-			return err
-		}
-	case listFormatYAML:
-		out, err := yaml.Marshal(cts)
-		if err != nil {
-			return err
-		}
-		fmt.Printf("%s", out)
-	default:
-		return fmt.Errorf(i18n.G("Invalid format %q"), c.flagFormat)
+	headers := []string{}
+	for _, column := range columns {
+		headers = append(headers, column.Name)
 	}
 
-	return nil
+	return renderTable(c.flagFormat, headers, data, cts)
 }
 
 func (c *cmdList) Run(cmd *cobra.Command, args []string) error {

From 0e3ba3a495ca471a63414226774c453307c938e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 10:59:35 -0400
Subject: [PATCH 04/17] lxc/image: Port to renderTable
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/image.go | 78 +++++++++++-----------------------------------------
 1 file changed, 16 insertions(+), 62 deletions(-)

diff --git a/lxc/image.go b/lxc/image.go
index b123afd034..e3f0afba25 100644
--- a/lxc/image.go
+++ b/lxc/image.go
@@ -1,8 +1,6 @@
 package main
 
 import (
-	"encoding/csv"
-	"encoding/json"
 	"fmt"
 	"io"
 	"io/ioutil"
@@ -12,7 +10,6 @@ import (
 	"sort"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"gopkg.in/yaml.v2"
 
@@ -1154,73 +1151,30 @@ func (c *cmdImageList) Run(cmd *cobra.Command, args []string) error {
 	}
 
 	// Render the table
-	tableData := func() [][]string {
-		data := [][]string{}
-		for _, image := range images {
-			if !c.imageShouldShow(filters, &image) {
-				continue
-			}
-
-			row := []string{}
-			for _, column := range columns {
-				row = append(row, column.Data(image))
-			}
-			data = append(data, row)
-		}
-
-		sort.Sort(stringList(data))
-		return data
-	}
-
-	switch c.flagFormat {
-	case listFormatCSV:
-		w := csv.NewWriter(os.Stdout)
-		w.WriteAll(tableData())
-		if err := w.Error(); err != nil {
-			return err
+	data := [][]string{}
+	for _, image := range images {
+		if !c.imageShouldShow(filters, &image) {
+			continue
 		}
 
-	case listFormatTable:
-		table := tablewriter.NewWriter(os.Stdout)
-		table.SetAutoWrapText(false)
-		table.SetAlignment(tablewriter.ALIGN_LEFT)
-		table.SetRowLine(true)
-		headers := []string{}
+		row := []string{}
 		for _, column := range columns {
-			headers = append(headers, column.Name)
-		}
-		table.SetHeader(headers)
-		table.AppendBulk(tableData())
-		table.Render()
-
-	case listFormatJSON:
-		data := make([]*api.Image, len(images))
-		for i := range images {
-			data[i] = &images[i]
-		}
-		enc := json.NewEncoder(os.Stdout)
-		err := enc.Encode(data)
-		if err != nil {
-			return err
-		}
-
-	case listFormatYAML:
-		data := make([]*api.Image, len(images))
-		for i := range images {
-			data[i] = &images[i]
+			row = append(row, column.Data(image))
 		}
+		data = append(data, row)
+	}
 
-		out, err := yaml.Marshal(data)
-		if err != nil {
-			return err
-		}
-		fmt.Printf("%s", out)
+	rawData := make([]*api.Image, len(images))
+	for i := range images {
+		rawData[i] = &images[i]
+	}
 
-	default:
-		return fmt.Errorf(i18n.G("Invalid format %q"), c.flagFormat)
+	headers := []string{}
+	for _, column := range columns {
+		headers = append(headers, column.Name)
 	}
 
-	return nil
+	return renderTable(c.flagFormat, headers, data, rawData)
 }
 
 // Refresh

From 7983e136c983f835d61a1eefb2fd2bb4b4befc70 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 11:02:27 -0400
Subject: [PATCH 05/17] lxc/network: Port to renderTable
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/network.go | 42 +-----------------------------------------
 1 file changed, 1 insertion(+), 41 deletions(-)

diff --git a/lxc/network.go b/lxc/network.go
index 45d59ce449..01d97026e0 100644
--- a/lxc/network.go
+++ b/lxc/network.go
@@ -1,8 +1,6 @@
 package main
 
 import (
-	"encoding/csv"
-	"encoding/json"
 	"fmt"
 	"io/ioutil"
 	"os"
@@ -875,45 +873,7 @@ func (c *cmdNetworkList) Run(cmd *cobra.Command, args []string) error {
 		header = append(header, i18n.G("STATE"))
 	}
 
-	switch c.flagFormat {
-	case listFormatTable:
-		table := tablewriter.NewWriter(os.Stdout)
-		table.SetAutoWrapText(false)
-		table.SetAlignment(tablewriter.ALIGN_LEFT)
-		table.SetRowLine(true)
-		table.SetHeader(header)
-		sort.Sort(byName(data))
-		table.AppendBulk(data)
-		table.Render()
-	case listFormatCSV:
-		sort.Sort(byName(data))
-		data = append(data, []string{})
-		copy(data[1:], data[0:])
-		data[0] = header
-		w := csv.NewWriter(os.Stdout)
-		w.WriteAll(data)
-		if err := w.Error(); err != nil {
-			return err
-		}
-	case listFormatJSON:
-		data := networks
-		enc := json.NewEncoder(os.Stdout)
-		err := enc.Encode(data)
-		if err != nil {
-			return err
-		}
-	case listFormatYAML:
-		data := networks
-		out, err := yaml.Marshal(data)
-		if err != nil {
-			return err
-		}
-		fmt.Printf("%s", out)
-	default:
-		return fmt.Errorf(i18n.G("Invalid format %q"), c.flagFormat)
-	}
-
-	return nil
+	return renderTable(c.flagFormat, header, data, networks)
 }
 
 // List leases

From 8ec3c3c588f6d84eb77663c8cad56aa16a3d0235 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 11:03:20 -0400
Subject: [PATCH 06/17] lxc/profile: Port to renderTable
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/profile.go | 46 +---------------------------------------------
 1 file changed, 1 insertion(+), 45 deletions(-)

diff --git a/lxc/profile.go b/lxc/profile.go
index e8c1acf632..27264aa41d 100644
--- a/lxc/profile.go
+++ b/lxc/profile.go
@@ -1,15 +1,11 @@
 package main
 
 import (
-	"encoding/csv"
-	"encoding/json"
 	"fmt"
 	"io/ioutil"
 	"os"
-	"sort"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"gopkg.in/yaml.v2"
 
@@ -621,47 +617,7 @@ func (c *cmdProfileList) Run(cmd *cobra.Command, args []string) error {
 		i18n.G("NAME"),
 		i18n.G("USED BY")}
 
-	switch c.flagFormat {
-	case listFormatTable:
-		table := tablewriter.NewWriter(os.Stdout)
-		table.SetAutoWrapText(false)
-		table.SetAlignment(tablewriter.ALIGN_LEFT)
-		table.SetRowLine(true)
-		table.SetHeader(header)
-		sort.Sort(byName(data))
-		table.AppendBulk(data)
-		table.Render()
-
-	case listFormatCSV:
-		sort.Sort(byName(data))
-		data = append(data, []string{})
-		copy(data[1:], data[0:])
-		data[0] = header
-		w := csv.NewWriter(os.Stdout)
-		w.WriteAll(data)
-		if err := w.Error(); err != nil {
-			return err
-		}
-
-	case listFormatJSON:
-		enc := json.NewEncoder(os.Stdout)
-		err := enc.Encode(profiles)
-		if err != nil {
-			return err
-		}
-
-	case listFormatYAML:
-		out, err := yaml.Marshal(profiles)
-		if err != nil {
-			return err
-		}
-		fmt.Printf("%s", out)
-
-	default:
-		return fmt.Errorf(i18n.G("Invalid format %q"), c.flagFormat)
-	}
-
-	return nil
+	return renderTable(c.flagFormat, header, data, profiles)
 }
 
 // Remove

From 17053e0b05e0ed3c688c3a4d8b45dc272f64db34 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:34:00 -0400
Subject: [PATCH 07/17] lxc/cluster: Use renderTable for list
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/cluster.go | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/lxc/cluster.go b/lxc/cluster.go
index 4504b2c596..fef0b9af50 100644
--- a/lxc/cluster.go
+++ b/lxc/cluster.go
@@ -4,7 +4,6 @@ import (
 	"bufio"
 	"fmt"
 	"os"
-	"sort"
 	"strings"
 
 	"github.com/pkg/errors"
@@ -15,7 +14,6 @@ import (
 	"github.com/lxc/lxd/shared/api"
 	cli "github.com/lxc/lxd/shared/cmd"
 	"github.com/lxc/lxd/shared/i18n"
-	"github.com/olekukonko/tablewriter"
 )
 
 type cmdCluster struct {
@@ -56,6 +54,8 @@ func (c *cmdCluster) Command() *cobra.Command {
 type cmdClusterList struct {
 	global  *cmdGlobal
 	cluster *cmdCluster
+
+	flagFormat string
 }
 
 func (c *cmdClusterList) Command() *cobra.Command {
@@ -65,6 +65,7 @@ func (c *cmdClusterList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List all the cluster members")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List all the cluster members`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -118,22 +119,15 @@ func (c *cmdClusterList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, line)
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-	table.SetHeader([]string{
+	header := []string{
 		i18n.G("NAME"),
 		i18n.G("URL"),
 		i18n.G("DATABASE"),
 		i18n.G("STATE"),
 		i18n.G("MESSAGE"),
-	})
-	sort.Sort(byName(data))
-	table.AppendBulk(data)
-	table.Render()
+	}
 
-	return nil
+	return renderTable(c.flagFormat, header, data, members)
 }
 
 // Show

From e4dd51c87151cfbf41dde23793c23229c9f47383 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:37:27 -0400
Subject: [PATCH 08/17] lxc/operation: Use renderTable for list
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 | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/lxc/operation.go b/lxc/operation.go
index 97d0fea2d1..3b1b68919a 100644
--- a/lxc/operation.go
+++ b/lxc/operation.go
@@ -2,11 +2,8 @@ package main
 
 import (
 	"fmt"
-	"os"
-	"sort"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"gopkg.in/yaml.v2"
 
@@ -91,6 +88,8 @@ func (c *cmdOperationDelete) Run(cmd *cobra.Command, args []string) error {
 type cmdOperationList struct {
 	global    *cmdGlobal
 	operation *cmdOperation
+
+	flagFormat string
 }
 
 func (c *cmdOperationList) Command() *cobra.Command {
@@ -100,6 +99,7 @@ func (c *cmdOperationList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List background operations")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List background operations`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -151,10 +151,6 @@ func (c *cmdOperationList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, entry)
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
 	header := []string{
 		i18n.G("ID"),
 		i18n.G("TYPE"),
@@ -165,12 +161,8 @@ func (c *cmdOperationList) Run(cmd *cobra.Command, args []string) error {
 	if resource.server.IsClustered() {
 		header = append(header, i18n.G("LOCATION"))
 	}
-	table.SetHeader(header)
-	sort.Sort(byName(data))
-	table.AppendBulk(data)
-	table.Render()
 
-	return nil
+	return renderTable(c.flagFormat, header, data, operations)
 }
 
 // Show

From 341d5090caa430536d359a8ab47e5020f92c45c0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:39:42 -0400
Subject: [PATCH 09/17] lxc/alias: Use renderTable for list
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/alias.go | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

diff --git a/lxc/alias.go b/lxc/alias.go
index bfbc02035d..14c0c64e86 100644
--- a/lxc/alias.go
+++ b/lxc/alias.go
@@ -2,10 +2,7 @@ package main
 
 import (
 	"fmt"
-	"os"
-	"sort"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 
 	cli "github.com/lxc/lxd/shared/cmd"
@@ -89,6 +86,8 @@ func (c *cmdAliasAdd) Run(cmd *cobra.Command, args []string) error {
 type cmdAliasList struct {
 	global *cmdGlobal
 	alias  *cmdAlias
+
+	flagFormat string
 }
 
 func (c *cmdAliasList) Command() *cobra.Command {
@@ -98,6 +97,7 @@ func (c *cmdAliasList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List aliases")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List aliases`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -119,18 +119,12 @@ func (c *cmdAliasList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, []string{k, v})
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-	table.SetHeader([]string{
+	header := []string{
 		i18n.G("ALIAS"),
-		i18n.G("TARGET")})
-	sort.Sort(byName(data))
-	table.AppendBulk(data)
-	table.Render()
+		i18n.G("TARGET"),
+	}
 
-	return nil
+	return renderTable(c.flagFormat, header, data, conf.Aliases)
 }
 
 // Rename

From 45ebad387efed6c7cf7d196e2c07b68a920ab587 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:42:05 -0400
Subject: [PATCH 10/17] lxc/project: Use renderTable for list
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/project.go | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/lxc/project.go b/lxc/project.go
index bd62dca6d9..b00d4d2085 100644
--- a/lxc/project.go
+++ b/lxc/project.go
@@ -4,10 +4,8 @@ import (
 	"fmt"
 	"io/ioutil"
 	"os"
-	"sort"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"gopkg.in/yaml.v2"
 
@@ -372,6 +370,8 @@ func (c *cmdProjectGet) Run(cmd *cobra.Command, args []string) error {
 type cmdProjectList struct {
 	global  *cmdGlobal
 	project *cmdProject
+
+	flagFormat string
 }
 
 func (c *cmdProjectList) Command() *cobra.Command {
@@ -381,6 +381,7 @@ func (c *cmdProjectList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List projects")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List projects`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -441,20 +442,14 @@ func (c *cmdProjectList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, []string{name, images, profiles, strUsedBy})
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-	table.SetHeader([]string{
+	header := []string{
 		i18n.G("NAME"),
 		i18n.G("IMAGES"),
 		i18n.G("PROFILES"),
-		i18n.G("USED BY")})
-	sort.Sort(byName(data))
-	table.AppendBulk(data)
-	table.Render()
+		i18n.G("USED BY"),
+	}
 
-	return nil
+	return renderTable(c.flagFormat, header, data, projects)
 }
 
 // Rename

From e76a92bb961ab63d4c613c93452c940086c80014 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:46:19 -0400
Subject: [PATCH 11/17] lxc/image: Use renderTable for alias list
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/image_alias.go | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

diff --git a/lxc/image_alias.go b/lxc/image_alias.go
index bba4b6d4d9..bfcc502b21 100644
--- a/lxc/image_alias.go
+++ b/lxc/image_alias.go
@@ -2,11 +2,8 @@ package main
 
 import (
 	"fmt"
-	"os"
-	"sort"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 
 	"github.com/lxc/lxd/shared/api"
@@ -139,6 +136,8 @@ type cmdImageAliasList struct {
 	global     *cmdGlobal
 	image      *cmdImage
 	imageAlias *cmdImageAlias
+
+	flagFormat string
 }
 
 func (c *cmdImageAliasList) Command() *cobra.Command {
@@ -151,6 +150,7 @@ func (c *cmdImageAliasList) Command() *cobra.Command {
 
 Filters may be part of the image hash or part of the image alias name.
 `))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -220,19 +220,13 @@ func (c *cmdImageAliasList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, []string{alias.Name, alias.Target[0:12], alias.Description})
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-	table.SetHeader([]string{
+	header := []string{
 		i18n.G("ALIAS"),
 		i18n.G("FINGERPRINT"),
-		i18n.G("DESCRIPTION")})
-	sort.Sort(stringList(data))
-	table.AppendBulk(data)
-	table.Render()
+		i18n.G("DESCRIPTION"),
+	}
 
-	return nil
+	return renderTable(c.flagFormat, header, data, aliases)
 }
 
 // Rename

From 154b494f27f31a9b71992b4c3615755dc38cd9ac Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:49:10 -0400
Subject: [PATCH 12/17] lxc/network: Use renderTable for list-leases
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/network.go | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/lxc/network.go b/lxc/network.go
index 01d97026e0..785bf2b17b 100644
--- a/lxc/network.go
+++ b/lxc/network.go
@@ -7,7 +7,6 @@ import (
 	"sort"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"gopkg.in/yaml.v2"
 
@@ -880,6 +879,8 @@ func (c *cmdNetworkList) Run(cmd *cobra.Command, args []string) error {
 type cmdNetworkListLeases struct {
 	global  *cmdGlobal
 	network *cmdNetwork
+
+	flagFormat string
 }
 
 func (c *cmdNetworkListLeases) Command() *cobra.Command {
@@ -888,6 +889,7 @@ func (c *cmdNetworkListLeases) Command() *cobra.Command {
 	cmd.Short = i18n.G("List DHCP leases")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List DHCP leases`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -929,11 +931,6 @@ func (c *cmdNetworkListLeases) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, entry)
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-	sort.Sort(byName(data))
 	header := []string{
 		i18n.G("HOSTNAME"),
 		i18n.G("MAC ADDRESS"),
@@ -943,11 +940,8 @@ func (c *cmdNetworkListLeases) Run(cmd *cobra.Command, args []string) error {
 	if resource.server.IsClustered() {
 		header = append(header, i18n.G("LOCATION"))
 	}
-	table.SetHeader(header)
-	table.AppendBulk(data)
-	table.Render()
 
-	return nil
+	return renderTable(c.flagFormat, header, data, leases)
 }
 
 // Rename

From a0ef4686c4c3a2379cdb82455621b4facdbb6fa7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:52:51 -0400
Subject: [PATCH 13/17] lxc/config: Use renderTable for template list
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/config_template.go | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/lxc/config_template.go b/lxc/config_template.go
index 35652c6701..65f9f130b3 100644
--- a/lxc/config_template.go
+++ b/lxc/config_template.go
@@ -5,9 +5,7 @@ import (
 	"fmt"
 	"io/ioutil"
 	"os"
-	"sort"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 
 	"github.com/lxc/lxd/shared"
@@ -226,6 +224,8 @@ type cmdConfigTemplateList struct {
 	global         *cmdGlobal
 	config         *cmdConfig
 	configTemplate *cmdConfigTemplate
+
+	flagFormat string
 }
 
 func (c *cmdConfigTemplateList) Command() *cobra.Command {
@@ -234,6 +234,7 @@ func (c *cmdConfigTemplateList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List container file templates")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List container file templates`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -271,16 +272,11 @@ func (c *cmdConfigTemplateList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, []string{template})
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-	table.SetHeader([]string{i18n.G("FILENAME")})
-	sort.Sort(byName(data))
-	table.AppendBulk(data)
-	table.Render()
+	header := []string{
+		i18n.G("FILENAME"),
+	}
 
-	return nil
+	return renderTable(c.flagFormat, header, data, templates)
 }
 
 // Show

From 8a1bf2e05baa19f7d7d4734dea2cffbce2e69f08 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:55:26 -0400
Subject: [PATCH 14/17] lxc/storage: Use renderTable for list
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/storage.go | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/lxc/storage.go b/lxc/storage.go
index 63f5eccbb9..23ac624102 100644
--- a/lxc/storage.go
+++ b/lxc/storage.go
@@ -8,7 +8,6 @@ import (
 	"strconv"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"gopkg.in/yaml.v2"
 
@@ -496,6 +495,8 @@ func (c *cmdStorageInfo) Run(cmd *cobra.Command, args []string) error {
 type cmdStorageList struct {
 	global  *cmdGlobal
 	storage *cmdStorage
+
+	flagFormat string
 }
 
 func (c *cmdStorageList) Command() *cobra.Command {
@@ -505,6 +506,7 @@ func (c *cmdStorageList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List available storage pools")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List available storage pools`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -550,11 +552,6 @@ func (c *cmdStorageList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, details)
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-
 	header := []string{
 		i18n.G("NAME"),
 		i18n.G("DESCRIPTION"),
@@ -566,13 +563,8 @@ func (c *cmdStorageList) Run(cmd *cobra.Command, args []string) error {
 		header = append(header, i18n.G("SOURCE"))
 	}
 	header = append(header, i18n.G("USED BY"))
-	table.SetHeader(header)
 
-	sort.Sort(byName(data))
-	table.AppendBulk(data)
-	table.Render()
-
-	return nil
+	return renderTable(c.flagFormat, header, data, pools)
 }
 
 // Set

From 43a3d652e3d21e030463d8ca8bbbcf5394200639 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:56:37 -0400
Subject: [PATCH 15/17] lxc/storage: Use renderTable for volume list
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/storage_volume.go | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/lxc/storage_volume.go b/lxc/storage_volume.go
index e2d55d6ce9..e7b02bf7d0 100644
--- a/lxc/storage_volume.go
+++ b/lxc/storage_volume.go
@@ -8,7 +8,6 @@ import (
 	"strconv"
 	"strings"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 	"gopkg.in/yaml.v2"
 
@@ -1058,6 +1057,8 @@ type cmdStorageVolumeList struct {
 	global        *cmdGlobal
 	storage       *cmdStorage
 	storageVolume *cmdStorageVolume
+
+	flagFormat string
 }
 
 func (c *cmdStorageVolumeList) Command() *cobra.Command {
@@ -1067,6 +1068,7 @@ func (c *cmdStorageVolumeList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List storage volumes")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List storage volumes`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -1110,10 +1112,6 @@ func (c *cmdStorageVolumeList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, entry)
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
 	header := []string{
 		i18n.G("TYPE"),
 		i18n.G("NAME"),
@@ -1123,12 +1121,8 @@ func (c *cmdStorageVolumeList) Run(cmd *cobra.Command, args []string) error {
 	if resource.server.IsClustered() {
 		header = append(header, i18n.G("LOCATION"))
 	}
-	table.SetHeader(header)
-	sort.Sort(byNameAndType(data))
-	table.AppendBulk(data)
-	table.Render()
 
-	return nil
+	return renderTable(c.flagFormat, header, data, volumes)
 }
 
 // Move

From 8c7fc912526bf6f2b3b484a2d4912dc4fef35084 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:58:20 -0400
Subject: [PATCH 16/17] lxc/config: Use renderTable for trust list
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/config_trust.go | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

diff --git a/lxc/config_trust.go b/lxc/config_trust.go
index 54b634b83f..1c44cde0f5 100644
--- a/lxc/config_trust.go
+++ b/lxc/config_trust.go
@@ -5,10 +5,7 @@ import (
 	"encoding/base64"
 	"encoding/pem"
 	"fmt"
-	"os"
-	"sort"
 
-	"github.com/olekukonko/tablewriter"
 	"github.com/spf13/cobra"
 
 	"github.com/lxc/lxd/shared"
@@ -105,6 +102,8 @@ type cmdConfigTrustList struct {
 	global      *cmdGlobal
 	config      *cmdConfig
 	configTrust *cmdConfigTrust
+
+	flagFormat string
 }
 
 func (c *cmdConfigTrustList) Command() *cobra.Command {
@@ -114,6 +113,7 @@ func (c *cmdConfigTrustList) Command() *cobra.Command {
 	cmd.Short = i18n.G("List trusted clients")
 	cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
 		`List trusted clients`))
+	cmd.Flags().StringVar(&c.flagFormat, "format", "table", i18n.G("Format (csv|json|table|yaml)")+"``")
 
 	cmd.RunE = c.Run
 
@@ -166,20 +166,14 @@ func (c *cmdConfigTrustList) Run(cmd *cobra.Command, args []string) error {
 		data = append(data, []string{fp, cert.Subject.CommonName, issue, expiry})
 	}
 
-	table := tablewriter.NewWriter(os.Stdout)
-	table.SetAutoWrapText(false)
-	table.SetAlignment(tablewriter.ALIGN_LEFT)
-	table.SetRowLine(true)
-	table.SetHeader([]string{
+	header := []string{
 		i18n.G("FINGERPRINT"),
 		i18n.G("COMMON NAME"),
 		i18n.G("ISSUE DATE"),
-		i18n.G("EXPIRY DATE")})
-	sort.Sort(stringList(data))
-	table.AppendBulk(data)
-	table.Render()
+		i18n.G("EXPIRY DATE"),
+	}
 
-	return nil
+	return renderTable(c.flagFormat, header, data, trust)
 }
 
 // Remove

From 0e3b2a69db0f9b48203d6e1a06fced3118c98ab4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 8 Aug 2019 13:58:40 -0400
Subject: [PATCH 17/17] 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      | 1128 +++++++++++++++++++++++++------------------------
 po/de.po      | 1128 +++++++++++++++++++++++++------------------------
 po/el.po      | 1128 +++++++++++++++++++++++++------------------------
 po/es.po      | 1128 +++++++++++++++++++++++++------------------------
 po/fa.po      | 1128 +++++++++++++++++++++++++------------------------
 po/fi.po      | 1128 +++++++++++++++++++++++++------------------------
 po/fr.po      | 1128 +++++++++++++++++++++++++------------------------
 po/hi.po      | 1128 +++++++++++++++++++++++++------------------------
 po/id.po      | 1128 +++++++++++++++++++++++++------------------------
 po/it.po      | 1128 +++++++++++++++++++++++++------------------------
 po/ja.po      | 1128 +++++++++++++++++++++++++------------------------
 po/ko.po      | 1128 +++++++++++++++++++++++++------------------------
 po/lxd.pot    |  960 ++++++++++++++++++++---------------------
 po/nb_NO.po   | 1128 +++++++++++++++++++++++++------------------------
 po/nl.po      | 1128 +++++++++++++++++++++++++------------------------
 po/pa.po      | 1128 +++++++++++++++++++++++++------------------------
 po/pl.po      | 1128 +++++++++++++++++++++++++------------------------
 po/pt_BR.po   | 1128 +++++++++++++++++++++++++------------------------
 po/ru.po      | 1128 +++++++++++++++++++++++++------------------------
 po/sr.po      | 1128 +++++++++++++++++++++++++------------------------
 po/sv.po      | 1128 +++++++++++++++++++++++++------------------------
 po/tr.po      | 1128 +++++++++++++++++++++++++------------------------
 po/uk.po      | 1128 +++++++++++++++++++++++++------------------------
 po/zh_Hans.po | 1128 +++++++++++++++++++++++++------------------------
 24 files changed, 13475 insertions(+), 13429 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 363bef32fb..cb1ad0d4e3 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 199dcf1129..c2059014ec 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 3.3-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
@@ -54,7 +54,7 @@ msgstr ""
 "###\n"
 "### Der Name wird zwar angezeigt, lässt sich jedoch nicht ändern.\n"
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -160,7 +160,7 @@ msgstr ""
 "###\n"
 "### Der Name wird zwar angezeigt, lässt sich jedoch nicht ändern.\n"
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -176,7 +176,7 @@ msgstr ""
 "### Zum Beispiel:\n"
 "###  description: Mein eigenes Abbild\n"
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the network.\n"
@@ -214,7 +214,7 @@ msgstr ""
 "###\n"
 "### Der Name wird zwar angezeigt, lässt sich jedoch nicht ändern.\n"
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 #, 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:226
+#: lxc/project.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -293,7 +293,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (%d mehr)"
@@ -313,7 +313,7 @@ msgstr "%v (zwei weitere Male unterbrechen, um zu erzwingen)"
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr "(kein Wert)"
 
@@ -349,27 +349,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr "ARCHITEKTUR"
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr "Akzeptiere Zertifikat"
 
@@ -381,20 +381,20 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Aliasse:\n"
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 #, fuzzy
 msgid "Add profiles to containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -404,31 +404,31 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Address: %s"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Administrator Passwort für %s: "
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, fuzzy, c-format
 msgid "Alias %s already exists"
 msgstr "entfernte Instanz %s existiert bereits"
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, fuzzy, c-format
 msgid "Alias %s doesn't exist"
 msgstr "entfernte Instanz %s existiert nicht"
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 #, fuzzy
 msgid "Aliases:"
 msgstr "Aliasse:\n"
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, fuzzy, c-format
 msgid "Architecture: %s"
 msgstr "Architektur: %s\n"
@@ -438,27 +438,27 @@ msgstr "Architektur: %s\n"
 msgid "Architecture: %v"
 msgstr "Architektur: %s\n"
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -475,7 +475,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -485,12 +485,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr "automatisches Update: %s"
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -499,18 +499,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, fuzzy, c-format
 msgid "Bad property: %s"
 msgstr "Ungültige Abbild Eigenschaft: %s\n"
@@ -529,19 +529,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr "Erstellt: %s"
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes empfangen"
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Bytes gesendet"
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -564,12 +564,12 @@ msgstr " Prozessorauslastung:"
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 #, fuzzy
 msgid "CREATED"
 msgstr "ERSTELLT AM"
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr "ERSTELLT AM"
 
@@ -578,7 +578,7 @@ msgstr "ERSTELLT AM"
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, fuzzy, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -600,7 +600,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -608,16 +608,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -656,12 +656,12 @@ msgstr ""
 "Optionen:\n"
 "\n"
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, fuzzy, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Fingerabdruck des Zertifikats: % x\n"
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr "Gespeichertes Nutzerzertifikat auf dem Server: "
 
@@ -672,23 +672,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr "Spalten"
 
@@ -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:88
+#: lxc/project.go:86
 #, fuzzy
 msgid "Config key/value to apply to the new project"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -720,8 +720,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, fuzzy, c-format
 msgid "Config parsing error: %s"
 msgstr "YAML Analyse Fehler %v\n"
@@ -753,7 +753,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr "Kopiere Aliasse von der Quelle"
 
@@ -762,11 +762,11 @@ msgstr "Kopiere Aliasse von der Quelle"
 msgid "Copy containers within or in between LXD instances"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -778,11 +778,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 #, fuzzy
 msgid "Copy storage volumes"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -792,7 +792,7 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Copy the container without its snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 #, fuzzy
 msgid "Copy the volume without its snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
@@ -801,12 +801,12 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, fuzzy, c-format
 msgid "Copying the storage volume: %s"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -821,11 +821,11 @@ msgstr "Fehler: %v\n"
 msgid "Cores:"
 msgstr "Fehler: %v\n"
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr "Kann Verzeichnis für Zertifikate auf dem Server nicht erstellen"
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -860,31 +860,31 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 #, fuzzy
 msgid "Create new container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 #, fuzzy
 msgid "Create new custom storage volumes"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 #, fuzzy
 msgid "Create profiles"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 #, fuzzy
 msgid "Create projects"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 #, fuzzy
 msgid "Create storage pools"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -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:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr "Erstellt: %s"
@@ -914,16 +914,16 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr "BESCHREIBUNG"
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -935,11 +935,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 #, fuzzy
 msgid "Delete container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -953,101 +953,101 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 #, fuzzy
 msgid "Delete projects"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 #, fuzzy
 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: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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -1066,7 +1066,7 @@ msgstr "Gerät %s wurde von %s entfernt\n"
 msgid "Device %s removed from %s"
 msgstr "Gerät %s wurde von %s entfernt\n"
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, fuzzy, c-format
 msgid "Device already exists: %s"
 msgstr "entfernte Instanz %s existiert bereits"
@@ -1086,7 +1086,7 @@ msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 "Falsche Anzahl an Objekten im Abbild, Container oder Sicherungspunkt gelesen."
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -1118,7 +1118,7 @@ msgstr " Prozessorauslastung:"
 msgid "Disks:"
 msgstr " Prozessorauslastung:"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1131,15 +1131,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr "ABLAUFDATUM"
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 #, fuzzy
 msgid "Edit container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -1157,40 +1157,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, fuzzy, c-format
 msgid "Error updating template file: %s"
 msgstr "Fehler beim hinzufügen des Alias %s\n"
@@ -1245,20 +1245,20 @@ msgstr ""
 "\n"
 "lxc exec <Container> [--env EDITOR=/usr/bin/vim]... <Befehl>\n"
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1280,17 +1280,17 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Exporting the backup: %s"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr "FINGERABDRUCK"
 
@@ -1299,7 +1299,7 @@ msgstr "FINGERABDRUCK"
 msgid "Failed to connect to cluster member"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1309,7 +1309,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1319,18 +1319,18 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 #, fuzzy
 msgid "Filtering isn't supported yet"
 msgstr ""
 "Anzeigen von Informationen über entfernte Instanzen wird noch nicht "
 "unterstützt\n"
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, fuzzy, c-format
 msgid "Fingerprint: %s"
 msgstr "Fingerabdruck: %s\n"
@@ -1339,7 +1339,7 @@ msgstr "Fingerabdruck: %s\n"
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1380,8 +1380,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1412,12 +1415,12 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 #, fuzzy
 msgid "Generating a client certificate. This may take a minute..."
 msgstr "Generiere Nutzerzertifikat. Dies kann wenige Minuten dauern...\n"
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1429,24 +1432,24 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 #, fuzzy
 msgid "Get values for project configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1458,7 +1461,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1466,7 +1469,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1480,23 +1483,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1515,33 +1518,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, fuzzy, c-format
 msgid "Image identifier missing: %s"
 msgstr "Abbild mit Fingerabdruck %s importiert\n"
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, fuzzy, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr "Abbild mit Fingerabdruck %s importiert\n"
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1554,14 +1557,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1578,7 +1581,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1588,33 +1591,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr "Akzeptiere Zertifikat"
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1630,7 +1632,7 @@ msgstr "ungültiges Argument %s"
 msgid "Invalid path %s"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, fuzzy, c-format
 msgid "Invalid protocol: %s"
 msgstr "Ungültiges Ziel %s"
@@ -1645,20 +1647,20 @@ msgstr "Ungültige Quelle %s"
 msgid "Invalid target %s"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1666,16 +1668,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1689,11 +1691,11 @@ msgstr "Architektur: %s\n"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 #, fuzzy
 msgid "List aliases"
 msgstr "Aliasse:\n"
@@ -1702,15 +1704,15 @@ msgstr "Aliasse:\n"
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1724,12 +1726,12 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "List container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 #, fuzzy
 msgid "List containers"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 #, fuzzy
 msgid ""
 "List containers\n"
@@ -1809,22 +1811,22 @@ msgstr ""
 "* \"security.privileged=1\" listet alle privilegierten Container\n"
 "* \"s.privileged=1\" ebenfalls\n"
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1850,7 +1852,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1858,20 +1860,20 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 #, fuzzy
 msgid "List storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1884,29 +1886,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr "Veröffentliche Abbild"
 
@@ -1915,15 +1917,15 @@ msgstr "Veröffentliche Abbild"
 msgid "Make the image public"
 msgstr "Veröffentliche Abbild"
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 #, fuzzy
 msgid "Manage command aliases"
 msgstr "Unbekannter Befehl %s für Abbild"
@@ -1937,7 +1939,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 #, fuzzy
 msgid "Manage container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
@@ -1951,17 +1953,17 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 #, fuzzy
 msgid "Manage image aliases"
 msgstr "Veröffentliche Abbild"
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 #, fuzzy
 msgid "Manage images"
 msgstr "Veröffentliche Abbild"
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1980,27 +1982,27 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 #, fuzzy
 msgid "Manage profiles"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 #, fuzzy
 msgid "Manage projects"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 #, fuzzy
 msgid "Manage storage pools and volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 #, fuzzy
 msgid "Manage storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -2008,11 +2010,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -2021,12 +2023,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, fuzzy, c-format
 msgid "Member %s removed"
 msgstr "Gerät %s wurde von %s entfernt\n"
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, fuzzy, c-format
 msgid "Member %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
@@ -2060,14 +2062,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 #, fuzzy
 msgid "Missing container name"
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 #, fuzzy
 msgid "Missing container.name name"
 msgstr "der Name des Ursprung Containers muss angegeben werden"
@@ -2079,42 +2081,42 @@ msgstr "der Name des Ursprung Containers muss angegeben werden"
 msgid "Missing name"
 msgstr "Fehlende Zusammenfassung."
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 #, fuzzy
 msgid "Missing pool name"
 msgstr "Profilname kann nicht geändert werden"
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 #, fuzzy
 msgid "Missing project name"
 msgstr "Profilname kann nicht geändert werden"
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 #, fuzzy
 msgid "Missing source volume name"
 msgstr "Kein Zertifikat für diese Verbindung"
@@ -2144,8 +2146,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -2159,7 +2161,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 #, fuzzy
 msgid "Move storage volumes between pools"
 msgstr "Kein Zertifikat für diese Verbindung"
@@ -2169,12 +2171,12 @@ msgstr "Kein Zertifikat für diese Verbindung"
 msgid "Move the container without its snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, fuzzy, c-format
 msgid "Moving the storage volume: %s"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -2183,9 +2185,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2197,8 +2199,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2220,7 +2222,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -2230,22 +2232,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, fuzzy, c-format
 msgid "Network %s created"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, fuzzy, c-format
 msgid "Network %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, fuzzy, c-format
 msgid "Network %s pending on member %s"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, fuzzy, c-format
 msgid "Network %s renamed to %s"
 msgstr "Profil %s erstellt\n"
@@ -2254,7 +2256,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr "Profil %s erstellt\n"
@@ -2263,7 +2265,7 @@ msgstr "Profil %s erstellt\n"
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2272,21 +2274,21 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 #, fuzzy
 msgid "No device found for this network"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 #, fuzzy
 msgid "No device found for this storage volume"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2300,27 +2302,27 @@ msgstr "kein Wert in %q gefunden\n"
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, fuzzy, c-format
 msgid "Operation %s deleted"
 msgstr "Profil %s gelöscht\n"
@@ -2338,35 +2340,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2402,13 +2404,13 @@ msgstr "Erstellt: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2443,32 +2445,32 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, fuzzy, c-format
 msgid "Profile %s added to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, fuzzy, c-format
 msgid "Profile %s created"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, fuzzy, c-format
 msgid "Profile %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, fuzzy, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, fuzzy, c-format
 msgid "Profile %s removed from %s"
 msgstr "Gerät %s wurde von %s entfernt\n"
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, fuzzy, c-format
 msgid "Profile %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
@@ -2483,7 +2485,7 @@ 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:229
+#: lxc/profile.go:225
 #, fuzzy, c-format
 msgid "Profiles %s applied to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
@@ -2493,31 +2495,31 @@ msgstr "Profil %s wurde auf %s angewandt\n"
 msgid "Profiles: %s"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, fuzzy, c-format
 msgid "Project %s created"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, fuzzy, c-format
 msgid "Project %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, fuzzy, c-format
 msgid "Project %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 #, fuzzy
 msgid "Properties:"
 msgstr "Eigenschaften:\n"
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, fuzzy, c-format
 msgid "Public: %s"
 msgstr "Öffentlich: %s\n"
@@ -2561,7 +2563,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2570,33 +2572,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, fuzzy, c-format
 msgid "Remote %s already exists"
 msgstr "entfernte Instanz %s existiert bereits"
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, fuzzy, c-format
 msgid "Remote %s doesn't exist"
 msgstr "entfernte Instanz %s existiert nicht"
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, fuzzy, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "entfernte Instanz %s existiert als <%s>"
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr "Entferntes Administrator Passwort"
 
@@ -2620,11 +2622,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 #, fuzzy
 msgid "Remove aliases"
 msgstr "Entferntes Administrator Passwort"
@@ -2634,25 +2636,25 @@ msgstr "Entferntes Administrator Passwort"
 msgid "Remove container devices"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 #, fuzzy
 msgid "Remove profiles from containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2661,35 +2663,35 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 #, fuzzy
 msgid "Rename profiles"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 #, fuzzy
 msgid "Rename projects"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 #, fuzzy
 msgid "Rename storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 #, fuzzy
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2731,7 +2733,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 #, fuzzy
 msgid "Restore storage volume snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
@@ -2750,15 +2752,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2766,19 +2768,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2786,21 +2788,21 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr "Server Zertifikat vom Benutzer nicht akzeptiert"
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 #, 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:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2837,11 +2839,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2850,11 +2852,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2863,12 +2865,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2877,12 +2879,12 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 #, fuzzy
 msgid "Set storage pool configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2891,12 +2893,12 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 #, fuzzy
 msgid "Set storage volume configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2905,7 +2907,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2942,16 +2944,16 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 #, fuzzy
 msgid "Show content of container file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2959,7 +2961,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2971,28 +2973,28 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 #, fuzzy
 msgid "Show storage volum configurations"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 #, fuzzy
 msgid "Show storage volume configurations"
 msgstr "Profil %s erstellt\n"
@@ -3001,7 +3003,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:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -3013,23 +3015,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, fuzzy, c-format
 msgid "Size: %.2fMB"
 msgstr "Größe: %.2vMB\n"
@@ -3039,7 +3041,7 @@ msgstr "Größe: %.2vMB\n"
 msgid "Size: %s"
 msgstr "Erstellt: %s"
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 #, fuzzy
 msgid "Snapshot storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
@@ -3058,7 +3060,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -3072,7 +3074,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, fuzzy, c-format
 msgid "State: %s"
 msgstr "Erstellt: %s"
@@ -3100,17 +3102,17 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Stopping the container failed: %s"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, fuzzy, c-format
 msgid "Storage pool %s created"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, fuzzy, c-format
 msgid "Storage pool %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, fuzzy, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr "Profil %s erstellt\n"
@@ -3120,22 +3122,22 @@ msgstr "Profil %s erstellt\n"
 msgid "Storage pool name"
 msgstr "Profilname kann nicht geändert werden"
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, fuzzy, c-format
 msgid "Storage volume %s created"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, fuzzy, c-format
 msgid "Storage volume %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 #, fuzzy
 msgid "Storage volume copied successfully!"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 #, fuzzy
 msgid "Storage volume moved successfully!"
 msgstr "Profil %s erstellt\n"
@@ -3163,20 +3165,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3236,13 +3238,13 @@ msgstr "entfernte Instanz %s existiert nicht"
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 #, fuzzy
 msgid "The specified device doesn't exist"
 msgstr "entfernte Instanz %s existiert nicht"
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 #, fuzzy
 msgid "The specified device doesn't match the network"
 msgstr "entfernte Instanz %s existiert nicht"
@@ -3260,7 +3262,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr "Wartezeit bevor der Container gestoppt wird."
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 #, fuzzy
 msgid "Timestamps:"
 msgstr "Zeitstempel:\n"
@@ -3282,7 +3284,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3296,7 +3298,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr "unbekannter entfernter Instanz Name: %q"
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3304,7 +3306,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3313,7 +3315,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3336,16 +3338,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3359,7 +3361,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3382,29 +3384,29 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 #, fuzzy
 msgid "Unset storage volume configuration keys"
 msgstr "Alternatives config Verzeichnis."
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3423,7 +3425,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3473,8 +3475,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr "Zustand des laufenden Containers sichern oder nicht"
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3497,15 +3499,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:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3513,40 +3515,40 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 #, fuzzy
 msgid "alias"
 msgstr "Aliasse:\n"
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3558,15 +3560,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3574,47 +3576,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3637,7 +3639,7 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 #, fuzzy
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -3645,19 +3647,19 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 #, fuzzy
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -3665,11 +3667,11 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 #, fuzzy
 msgid "delete [<remote>:]<project>"
 msgstr ""
@@ -3677,23 +3679,23 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3701,11 +3703,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3713,7 +3715,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3721,19 +3723,19 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 #, fuzzy
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -3742,11 +3744,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3759,11 +3761,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3791,7 +3793,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3803,15 +3805,15 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 #, fuzzy
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
@@ -3820,11 +3822,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 #, fuzzy
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
@@ -3836,15 +3838,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3854,19 +3856,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3886,20 +3888,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3911,27 +3913,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3981,7 +3983,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -4013,7 +4015,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -4055,13 +4057,13 @@ msgstr ""
 "\n"
 "lxc move <Quelle> <Ziel>\n"
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -4073,13 +4075,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -4106,19 +4108,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -4141,7 +4143,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4156,24 +4158,24 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 #, fuzzy
 msgid "ok (y/n)?"
 msgstr "OK (y/n)? "
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 #, fuzzy
 msgid "operation"
 msgstr "Eigenschaften:\n"
@@ -4194,12 +4196,12 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 #, fuzzy
 msgid "profile"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -4234,7 +4236,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -4242,23 +4244,23 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4266,19 +4268,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4291,15 +4293,15 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 #, fuzzy
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
@@ -4310,11 +4312,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4330,7 +4332,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 #, fuzzy
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
@@ -4347,7 +4349,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
@@ -4355,11 +4357,11 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
@@ -4367,7 +4369,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
@@ -4375,7 +4377,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4391,7 +4393,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4399,7 +4401,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4407,27 +4409,27 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 #, fuzzy
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -4436,11 +4438,11 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4457,7 +4459,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 #, fuzzy
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
@@ -4466,7 +4468,7 @@ msgstr ""
 "Entfernt einen Container (oder Sicherungspunkt) und alle dazugehörigen\n"
 "Daten (Konfiguration, Sicherungspunkte, ...).\n"
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4494,15 +4496,15 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4511,15 +4513,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4531,23 +4533,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
@@ -4559,7 +4561,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4567,16 +4569,16 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 e7c2f2c9de..498594db50 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2.12-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -36,7 +36,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -95,7 +95,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -105,7 +105,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -125,7 +125,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -168,7 +168,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -188,7 +188,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -224,27 +224,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -256,19 +256,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -277,30 +277,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -310,27 +310,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -346,7 +346,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -356,12 +356,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -369,18 +369,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -399,19 +399,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -434,11 +434,11 @@ msgstr "  Χρήση CPU:"
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -447,7 +447,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -460,7 +460,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -468,16 +468,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -498,7 +498,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -512,12 +512,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -528,23 +528,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -564,7 +564,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -573,8 +573,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -606,7 +606,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -630,11 +630,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -642,7 +642,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -650,12 +650,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -669,11 +669,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -705,27 +705,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -733,7 +733,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -752,16 +752,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -773,11 +773,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -789,99 +789,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -900,7 +900,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -914,7 +914,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -946,7 +946,7 @@ msgstr "  Χρήση CPU:"
 msgid "Disks:"
 msgstr "  Χρήση CPU:"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -959,15 +959,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -983,40 +983,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1067,20 +1067,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1100,17 +1100,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1118,7 +1118,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1127,7 +1127,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1137,15 +1137,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1154,7 +1154,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1194,8 +1194,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1226,11 +1229,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1242,23 +1245,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1270,7 +1273,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1278,7 +1281,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1292,23 +1295,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1326,33 +1329,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1364,14 +1367,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1388,7 +1391,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1397,33 +1400,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1438,7 +1440,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1453,20 +1455,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1474,16 +1476,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1497,11 +1499,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1509,15 +1511,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1529,11 +1531,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1598,22 +1600,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1639,7 +1641,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1647,19 +1649,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1672,29 +1674,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1702,15 +1704,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1722,7 +1724,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1734,15 +1736,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1761,23 +1763,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1785,11 +1787,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1798,12 +1800,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1839,13 +1841,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1855,40 +1857,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1917,8 +1919,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1930,7 +1932,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1938,12 +1940,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1951,9 +1953,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1965,8 +1967,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1988,7 +1990,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1998,22 +2000,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2022,7 +2024,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr "  Χρήση δικτύου:"
@@ -2031,7 +2033,7 @@ msgstr "  Χρήση δικτύου:"
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2039,19 +2041,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2065,27 +2067,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2103,35 +2105,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2166,13 +2168,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2207,32 +2209,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2245,7 +2247,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2255,30 +2257,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2319,7 +2321,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2328,33 +2330,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2377,11 +2379,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2389,24 +2391,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2414,31 +2416,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2478,7 +2480,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2495,15 +2497,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2511,19 +2513,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2531,19 +2533,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2579,11 +2581,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2592,11 +2594,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2605,11 +2607,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2618,11 +2620,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2631,11 +2633,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2644,7 +2646,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2680,15 +2682,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2696,7 +2698,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2708,27 +2710,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2736,7 +2738,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2748,23 +2750,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2774,7 +2776,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2792,7 +2794,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2805,7 +2807,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2832,17 +2834,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2851,21 +2853,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2891,20 +2893,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2961,12 +2963,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2982,7 +2984,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -3003,7 +3005,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3017,7 +3019,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3025,7 +3027,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3034,7 +3036,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3057,16 +3059,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3080,7 +3082,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3102,27 +3104,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3141,7 +3143,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3188,8 +3190,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3209,15 +3211,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3225,39 +3227,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3269,15 +3271,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3285,47 +3287,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3339,51 +3341,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3391,11 +3393,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3403,7 +3405,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3411,27 +3413,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3439,11 +3441,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3467,7 +3469,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3479,23 +3481,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3503,15 +3505,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3521,19 +3523,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3549,20 +3551,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3574,27 +3576,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3644,7 +3646,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3676,7 +3678,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3714,13 +3716,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3732,13 +3734,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3765,19 +3767,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3800,7 +3802,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3810,23 +3812,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3842,11 +3844,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3872,27 +3874,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3900,19 +3902,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3920,25 +3922,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3950,7 +3952,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3958,23 +3960,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3982,7 +3984,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3990,7 +3992,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3998,35 +4000,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4038,11 +4040,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4062,15 +4064,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4079,15 +4081,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4099,23 +4101,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4123,7 +4125,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4131,15 +4133,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 00c5fb07b3..7c1b28d18a 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 3.7-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -50,7 +50,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -146,7 +146,7 @@ msgstr ""
 "###     template: template.tpl\n"
 "###     properties: {}"
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -162,7 +162,7 @@ msgstr ""
 "### Un ejemplo sería:\n"
 "###  description: My custom image"
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -182,7 +182,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -240,7 +240,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (%d más)"
@@ -260,7 +260,7 @@ 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:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr "(ninguno)"
 
@@ -296,27 +296,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr "ALIASES"
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr "ARQUITECTURA"
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 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:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Aliases:"
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -350,30 +350,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr "Expira: %s"
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Contraseña admin para %s:"
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr "Aliases:"
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr "Arquitectura: %s"
@@ -383,27 +383,27 @@ msgstr "Arquitectura: %s"
 msgid "Architecture: %v"
 msgstr "Arquitectura: %s"
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -419,7 +419,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "Tipo de autenticación %s no está soportada por el servidor"
@@ -429,12 +429,12 @@ msgstr "Tipo de autenticación %s no está soportada por el servidor"
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr "Auto actualización: %s"
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -442,18 +442,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr "Propiedad mala: %s"
@@ -472,19 +472,19 @@ msgstr "Ambas: todas y el nombre del contenedor dado"
 msgid "Brand: %v"
 msgstr "Creado: %s"
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes recibidos"
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Bytes enviados"
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr "NOMBRE COMÚN"
 
@@ -506,11 +506,11 @@ msgstr "Uso de CPU:"
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr "CREADO"
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr "CREADO EN"
 
@@ -519,7 +519,7 @@ msgstr "CREADO EN"
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr "Cacheado: %s"
@@ -533,7 +533,7 @@ msgstr "Cacheado: %s"
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -541,16 +541,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr "No se puede jalar un directorio sin - recursivo"
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr "No se peude leer desde stdin: %s"
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -572,7 +572,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -586,12 +586,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr "Cacheado: %s"
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Certificado de la huella digital: %s"
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr "Certificado del cliente almacenado en el servidor:"
 
@@ -602,23 +602,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr "Nombre del Miembro del Cluster"
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr "Columnas"
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -647,8 +647,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -680,7 +680,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -688,11 +688,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -704,11 +704,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -716,7 +716,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -724,12 +724,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr "Copiando la imagen: %s"
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -744,11 +744,11 @@ msgstr "Expira: %s"
 msgid "Cores:"
 msgstr "Expira: %s"
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -782,27 +782,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -810,7 +810,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr "Creado: %s"
@@ -829,16 +829,16 @@ msgstr "Creando el contenedor"
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr "DESCRIPCIÓN"
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr "CONTROLADOR"
 
@@ -850,11 +850,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -866,99 +866,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -977,7 +977,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr "El dispostivo ya existe: %s"
@@ -991,7 +991,7 @@ msgstr "Cacheado: %s"
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr "El directorio importado no está disponible en esta plataforma"
 
@@ -1022,7 +1022,7 @@ msgstr "Uso del disco:"
 msgid "Disks:"
 msgstr "Uso del disco:"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1035,15 +1035,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr "FECHA DE EXPIRACIÓN"
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1059,40 +1059,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr "Error actualizando el archivo de plantilla: %s"
@@ -1143,20 +1143,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr "Expira: %s"
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr "Expira: nunca"
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1178,17 +1178,17 @@ msgstr "No se puede proveer el nombre del container a la lista"
 msgid "Exporting the backup: %s"
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr "Exportando la imagen: %s"
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr "HUELLA DIGITAL"
 
@@ -1196,7 +1196,7 @@ msgstr "HUELLA DIGITAL"
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1205,7 +1205,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1215,15 +1215,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr "El filtrado no está soportado aún"
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr "Huella dactilar: %s"
@@ -1232,7 +1232,7 @@ msgstr "Huella dactilar: %s"
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1272,8 +1272,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1304,11 +1307,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1320,23 +1323,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1348,7 +1351,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1356,7 +1359,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1370,23 +1373,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1404,33 +1407,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1443,14 +1446,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1467,7 +1470,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1476,33 +1479,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1517,7 +1519,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1532,20 +1534,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1553,16 +1555,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1576,11 +1578,11 @@ msgstr "Arquitectura: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 #, fuzzy
 msgid "List aliases"
 msgstr "Aliases:"
@@ -1589,15 +1591,15 @@ msgstr "Aliases:"
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1609,11 +1611,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1678,22 +1680,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1719,7 +1721,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1727,19 +1729,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1752,29 +1754,29 @@ msgstr ""
 msgid "Log:"
 msgstr "Registro:"
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1782,15 +1784,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1802,7 +1804,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1814,15 +1816,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1841,23 +1843,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1865,11 +1867,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1878,12 +1880,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1917,14 +1919,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 #, fuzzy
 msgid "Missing container name"
 msgstr "Nombre del contenedor es: %s"
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1934,41 +1936,41 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 #, fuzzy
 msgid "Missing project name"
 msgstr "Nombre del contenedor es: %s"
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1998,8 +2000,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -2011,7 +2013,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -2019,12 +2021,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -2032,9 +2034,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2046,8 +2048,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2069,7 +2071,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -2079,22 +2081,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2103,7 +2105,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2111,7 +2113,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2119,19 +2121,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2145,27 +2147,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2183,35 +2185,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2246,13 +2248,13 @@ msgstr "Auto actualización: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2287,32 +2289,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr "Perfil %s añadido a %s"
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr "Perfil %s creado"
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr "Perfil %s eliminado"
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr "Perfil %s eliminado de %s"
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr "Perfil %s renombrado a %s"
@@ -2325,7 +2327,7 @@ msgstr "Perfil para aplicar al nuevo contenedor"
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2335,30 +2337,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2399,7 +2401,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2408,33 +2410,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2457,11 +2459,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2469,24 +2471,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2494,31 +2496,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2558,7 +2560,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2575,15 +2577,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2591,19 +2593,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2611,19 +2613,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2659,11 +2661,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2672,11 +2674,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2685,11 +2687,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2698,11 +2700,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2711,11 +2713,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2724,7 +2726,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2760,15 +2762,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2776,7 +2778,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2788,27 +2790,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2816,7 +2818,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2828,23 +2830,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2854,7 +2856,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr "Auto actualización: %s"
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2872,7 +2874,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2885,7 +2887,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, fuzzy, c-format
 msgid "State: %s"
 msgstr "Auto actualización: %s"
@@ -2912,17 +2914,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2931,21 +2933,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2971,20 +2973,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3041,12 +3043,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -3062,7 +3064,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -3083,7 +3085,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3097,7 +3099,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3105,7 +3107,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3114,7 +3116,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3137,16 +3139,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3160,7 +3162,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3182,27 +3184,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3221,7 +3223,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3268,8 +3270,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3289,15 +3291,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3305,40 +3307,40 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 #, fuzzy
 msgid "alias"
 msgstr "Aliases:"
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3350,15 +3352,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3366,47 +3368,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3420,51 +3422,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3472,11 +3474,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3484,7 +3486,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3492,27 +3494,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3521,11 +3523,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3549,7 +3551,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3561,23 +3563,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3585,15 +3587,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3603,19 +3605,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3631,20 +3633,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3656,27 +3658,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3726,7 +3728,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3758,7 +3760,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3796,13 +3798,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3814,13 +3816,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3847,19 +3849,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3882,7 +3884,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3892,23 +3894,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3924,11 +3926,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3954,27 +3956,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3982,19 +3984,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4002,25 +4004,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4032,7 +4034,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -4040,23 +4042,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4065,7 +4067,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4073,7 +4075,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4081,35 +4083,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4122,11 +4124,11 @@ msgstr "No se puede proveer el nombre del container a la lista"
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4146,15 +4148,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4163,15 +4165,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4183,23 +4185,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4207,7 +4209,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4215,17 +4217,17 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 #, fuzzy
 msgid "volume"
 msgstr "Columnas"
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 4dffb4c2b7..906d5d9dcc 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 67ae77a276..32f70e968e 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 c2487063c2..e0b877e64f 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 3.4-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -54,7 +54,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -154,7 +154,7 @@ msgstr ""
 "###\n"
 "### Notez que le nom est affiché mais ne peut être modifié"
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -170,7 +170,7 @@ msgstr ""
 "### Un exemple serait :\n"
 "###  description: Mon image personnalisée"
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -207,7 +207,7 @@ msgstr ""
 "###\n"
 "### Notez que seule la configuration peut être modifiée."
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -283,7 +283,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (%d de plus)"
@@ -303,7 +303,7 @@ 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:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr "(aucun)"
 
@@ -339,29 +339,29 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 #, fuzzy
 msgid "ALIASES"
 msgstr "ALIAS"
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr "ARCH"
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr "ARCHITECTURE"
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 #, fuzzy
 msgid "AUTH TYPE"
 msgstr "TYPE"
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 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:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Alias :"
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 #, fuzzy
 msgid "Add profiles to containers"
 msgstr "Création du conteneur"
@@ -396,30 +396,30 @@ msgstr "Création du conteneur"
 msgid "Address: %s"
 msgstr "Expire : %s"
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Mot de passe administrateur pour %s : "
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, fuzzy, c-format
 msgid "Alias %s already exists"
 msgstr "le serveur distant %s existe déjà"
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, fuzzy, c-format
 msgid "Alias %s doesn't exist"
 msgstr "le serveur distant %s n'existe pas"
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr "Alias :"
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architecture : %s"
@@ -429,27 +429,27 @@ msgstr "Architecture : %s"
 msgid "Architecture: %v"
 msgstr "Architecture : %s"
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -466,7 +466,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "Le type d'authentification '%s' n'est pas supporté par le serveur"
@@ -476,12 +476,12 @@ msgstr "Le type d'authentification '%s' n'est pas supporté par le serveur"
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr "Mise à jour auto. : %s"
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -490,18 +490,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr "Image copiée avec succès !"
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr "Mauvaise propriété : %s"
@@ -520,19 +520,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr "Créé : %s"
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Octets reçus"
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Octets émis"
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr "COMMON NAME"
 
@@ -554,12 +554,12 @@ msgstr "CPU utilisé :"
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 #, fuzzy
 msgid "CREATED"
 msgstr "CRÉÉ À"
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr "CRÉÉ À"
 
@@ -568,7 +568,7 @@ msgstr "CRÉÉ À"
 msgid "CUDA Version: %v"
 msgstr "Afficher la version du client"
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, fuzzy, c-format
 msgid "Cached: %s"
 msgstr "Créé : %s"
@@ -582,7 +582,7 @@ msgstr "Créé : %s"
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -591,17 +591,17 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr "impossible de récupérer un répertoire sans --recursive"
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr "Impossible de lire depuis stdin : %s"
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 #, fuzzy
 msgid "Can't remove the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -624,7 +624,7 @@ 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:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -638,12 +638,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr "Créé : %s"
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Empreinte du certificat : %s"
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr "Certificat client enregistré sur le serveur : "
 
@@ -654,23 +654,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr "Colonnes"
 
@@ -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:88
+#: lxc/project.go:86
 #, fuzzy
 msgid "Config key/value to apply to the new project"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
@@ -707,8 +707,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr "Erreur lors de la lecture de la configuration : %s"
@@ -740,7 +740,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr "Copier les alias depuis la source"
 
@@ -749,11 +749,11 @@ msgstr "Copier les alias depuis la source"
 msgid "Copy containers within or in between LXD instances"
 msgstr "Copiez le conteneur sans ses instantanés"
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -765,11 +765,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 #, fuzzy
 msgid "Copy storage volumes"
 msgstr "Copie de l'image : %s"
@@ -778,7 +778,7 @@ msgstr "Copie de l'image : %s"
 msgid "Copy the container without its snapshots"
 msgstr "Copiez le conteneur sans ses instantanés"
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 #, fuzzy
 msgid "Copy the volume without its snapshots"
 msgstr "Copiez le conteneur sans ses instantanés"
@@ -787,12 +787,12 @@ msgstr "Copiez le conteneur sans ses instantanés"
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr "Copie de l'image : %s"
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, fuzzy, c-format
 msgid "Copying the storage volume: %s"
 msgstr "Copie de l'image : %s"
@@ -807,11 +807,11 @@ msgstr "erreur : %v"
 msgid "Cores:"
 msgstr "erreur : %v"
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr "Impossible de créer le dossier de stockage des certificats serveurs"
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -862,31 +862,31 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "Création du conteneur"
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 #, fuzzy
 msgid "Create new container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 #, fuzzy
 msgid "Create new custom storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 #, fuzzy
 msgid "Create profiles"
 msgstr "Créé : %s"
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 #, fuzzy
 msgid "Create projects"
 msgstr "Créé : %s"
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 #, fuzzy
 msgid "Create storage pools"
 msgstr "Copie de l'image : %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:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr "Créé : %s"
@@ -915,16 +915,16 @@ msgstr "Création du conteneur"
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 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:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 #, fuzzy
 msgid "Delete container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -954,102 +954,102 @@ msgstr "Forcer le conteneur à s'arrêter"
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 #, fuzzy
 msgid "Delete images"
 msgstr "Récupération de l'image : %s"
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 #, fuzzy
 msgid "Delete projects"
 msgstr "Récupération de l'image : %s"
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 #, fuzzy
 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: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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -1068,7 +1068,7 @@ msgstr "Périphérique %s retiré de %s"
 msgid "Device %s removed from %s"
 msgstr "Périphérique %s retiré de %s"
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, fuzzy, c-format
 msgid "Device already exists: %s"
 msgstr "le serveur distant %s existe déjà"
@@ -1083,7 +1083,7 @@ msgstr "Serveur distant : %s"
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr "pas d'image, conteneur ou instantané affecté sur ce serveur"
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr "L'importation de répertoire n'est pas disponible sur cette plateforme"
 
@@ -1115,7 +1115,7 @@ msgstr "  Disque utilisé :"
 msgid "Disks:"
 msgstr "  Disque utilisé :"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 #, 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:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr "ÉPHÉMÈRE"
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr "DATE D'EXPIRATION"
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 #, fuzzy
 msgid "Edit container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -1155,41 +1155,41 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr "Création du conteneur"
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 #, fuzzy
 msgid "Edit project configurations as YAML"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr "Erreur de mise à jour du modèle de fichier : %s"
@@ -1249,21 +1249,21 @@ msgstr ""
 "sélectionné si à la fois stdin et stdout sont des terminaux (stderr\n"
 "est ignoré)."
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr "Expire : %s"
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr "N'expire jamais"
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 #, fuzzy
 msgid "Export and download images"
 msgstr "Import de l'image : %s"
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1285,18 +1285,18 @@ msgstr "Forcer l'arrêt du conteneur (seulement pour stop)"
 msgid "Exporting the backup: %s"
 msgstr "Import de l'image : %s"
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, fuzzy, c-format
 msgid "Exporting the image: %s"
 msgstr "Import de l'image : %s"
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 #, fuzzy
 msgid "FILENAME"
 msgstr "NOM"
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr "EMPREINTE"
 
@@ -1305,7 +1305,7 @@ msgstr "EMPREINTE"
 msgid "Failed to connect to cluster member"
 msgstr "Profil à appliquer au nouveau conteneur"
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, fuzzy, c-format
 msgid "Failed to create alias %s"
 msgstr "Échec lors de la génération de 'lxc.%s.1': %v"
@@ -1315,7 +1315,7 @@ msgstr "Échec lors de la génération de 'lxc.%s.1': %v"
 msgid "Failed to get the new container name"
 msgstr "Profil à appliquer au nouveau conteneur"
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1325,16 +1325,16 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 #, fuzzy
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr "Mode rapide (identique à --columns=nsacPt"
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr "Empreinte : %s"
@@ -1343,7 +1343,7 @@ msgstr "Empreinte : %s"
 msgid "Force pseudo-terminal allocation"
 msgstr "Forcer l'allocation d'un pseudo-terminal"
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1384,8 +1384,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1416,11 +1419,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr "Génération d'un certificat client. Ceci peut prendre une minute…"
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1433,26 +1436,26 @@ msgstr "Clé de configuration invalide"
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 #, fuzzy
 msgid "Get values for network configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 #, fuzzy
 msgid "Get values for profile configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 #, fuzzy
 msgid "Get values for project configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1464,7 +1467,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 #, fuzzy
 msgid "HOSTNAME"
 msgstr "NOM"
@@ -1473,7 +1476,7 @@ msgstr "NOM"
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 #, fuzzy
 msgid "ID"
 msgstr "PID"
@@ -1488,23 +1491,23 @@ msgstr "Pid : %d"
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr "IPv4"
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr "IPv6"
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr "DATE D'ÉMISSION"
 
@@ -1526,34 +1529,34 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Ignorer l'état du conteneur (seulement pour start)"
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr "Image copiée avec succès !"
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 #, fuzzy
 msgid "Image exported successfully!"
 msgstr "Image copiée avec succès !"
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, fuzzy, c-format
 msgid "Image identifier missing: %s"
 msgstr "Image importée avec l'empreinte : %s"
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr "Image importée avec l'empreinte : %s"
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 #, fuzzy
 msgid "Image refreshed successfully!"
 msgstr "Image copiée avec succès !"
@@ -1567,14 +1570,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr "Ignorer l'état du conteneur (seulement pour start)"
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 #, fuzzy
 msgid "Import images into the image store"
 msgstr "Import de l'image : %s"
@@ -1592,7 +1595,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr "Schème d'URL invalide \"%s\" in \"%s\""
@@ -1601,33 +1604,32 @@ msgstr "Schème d'URL invalide \"%s\" in \"%s\""
 msgid "Invalid certificate"
 msgstr "Certificat invalide"
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, fuzzy, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "Clé de configuration invalide"
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Cible invalide %s"
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1643,7 +1645,7 @@ msgstr "nombre d'arguments incorrect pour la sous-comande"
 msgid "Invalid path %s"
 msgstr "Cible invalide %s"
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, fuzzy, c-format
 msgid "Invalid protocol: %s"
 msgstr "Cible invalide %s"
@@ -1658,20 +1660,20 @@ msgstr "Source invalide %s"
 msgid "Invalid target %s"
 msgstr "Cible invalide %s"
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr "IPs :"
 
-#: lxc/image.go:138
+#: 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:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr "DERNIÈRE UTILISATION À"
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1679,16 +1681,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr "Dernière utilisation : %s"
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr "Dernière utilisation : jamais"
 
@@ -1702,11 +1704,11 @@ msgstr "Architecture : %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 #, fuzzy
 msgid "List aliases"
 msgstr "Alias :"
@@ -1715,15 +1717,15 @@ msgstr "Alias :"
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1737,12 +1739,12 @@ msgstr "Création du conteneur"
 msgid "List container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 #, fuzzy
 msgid "List containers"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 #, fuzzy
 msgid ""
 "List containers\n"
@@ -1867,22 +1869,22 @@ msgstr ""
 "    lxc list -c n,volatile.base_image:\\BASE IMAGE\\:0,s46,volatile.eth0."
 "hwaddr:MAC"
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1908,7 +1910,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1916,20 +1918,20 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 #, fuzzy
 msgid "List storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1942,29 +1944,29 @@ msgstr ""
 msgid "Log:"
 msgstr "Journal : "
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr "GÉRÉ"
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr "Rendre l'image publique"
 
@@ -1972,15 +1974,15 @@ msgstr "Rendre l'image publique"
 msgid "Make the image public"
 msgstr "Rendre l'image publique"
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1993,7 +1995,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr "Création du conteneur"
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 #, fuzzy
 msgid "Manage container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
@@ -2007,17 +2009,17 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr "Transfert de l'image : %s"
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 #, fuzzy
 msgid "Manage image aliases"
 msgstr "Rendre l'image publique"
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 #, fuzzy
 msgid "Manage images"
 msgstr "Rendre l'image publique"
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -2036,26 +2038,26 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 #, fuzzy
 msgid "Manage projects"
 msgstr "Rendre l'image publique"
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 #, fuzzy
 msgid "Manage storage pools and volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 #, fuzzy
 msgid "Manage storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -2063,11 +2065,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -2076,12 +2078,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, fuzzy, c-format
 msgid "Member %s removed"
 msgstr "Profil %s supprimé de %s"
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, fuzzy, c-format
 msgid "Member %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
@@ -2118,14 +2120,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 #, fuzzy
 msgid "Missing container name"
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 #, fuzzy
 msgid "Missing container.name name"
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
@@ -2137,43 +2139,43 @@ msgstr "Vous devez fournir le nom d'un conteneur pour : "
 msgid "Missing name"
 msgstr "Résumé manquant."
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 #, fuzzy
 msgid "Missing network name"
 msgstr "Nom du réseau"
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 #, fuzzy
 msgid "Missing pool name"
 msgstr "Nom de l'ensemble de stockage"
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 #, fuzzy
 msgid "Missing project name"
 msgstr "Nom de l'ensemble de stockage"
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 #, fuzzy
 msgid "Missing source volume name"
 msgstr "Copie de l'image : %s"
@@ -2204,8 +2206,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 #, fuzzy
 msgid "More than one device matches, specify the device name"
 msgstr "Plus d'un périphérique correspond, spécifier le nom du périphérique."
@@ -2220,7 +2222,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr "Forcer le conteneur à s'arrêter"
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 #, fuzzy
 msgid "Move storage volumes between pools"
 msgstr "Copie de l'image : %s"
@@ -2230,12 +2232,12 @@ msgstr "Copie de l'image : %s"
 msgid "Move the container without its snapshots"
 msgstr "Forcer le conteneur à s'arrêter"
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, fuzzy, c-format
 msgid "Moving the storage volume: %s"
 msgstr "Copie de l'image : %s"
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -2243,9 +2245,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr "NOM"
 
@@ -2257,8 +2259,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr "NON"
 
@@ -2280,7 +2282,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr "Nom : %s"
@@ -2290,22 +2292,22 @@ msgstr "Nom : %s"
 msgid "Name: %v"
 msgstr "Nom : %s"
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr "Le réseau %s a été créé"
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr "Le réseau %s a été supprimé"
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, fuzzy, c-format
 msgid "Network %s pending on member %s"
 msgstr "Le réseau %s a été créé"
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, fuzzy, c-format
 msgid "Network %s renamed to %s"
 msgstr "Le réseau %s a été créé"
@@ -2314,7 +2316,7 @@ msgstr "Le réseau %s a été créé"
 msgid "Network name"
 msgstr "Nom du réseau"
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr "  Réseau utilisé :"
@@ -2323,7 +2325,7 @@ msgstr "  Réseau utilisé :"
 msgid "New alias to define at target"
 msgstr "Nouvel alias à définir sur la cible"
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 #, fuzzy
 msgid "New aliases to add to the image"
 msgstr "Nouvel alias à définir sur la cible"
@@ -2333,20 +2335,20 @@ msgstr "Nouvel alias à définir sur la cible"
 msgid "New key/value to apply to a specific device"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr "Aucun périphérique existant pour ce réseau"
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 #, fuzzy
 msgid "No device found for this storage volume"
 msgstr "Aucun périphérique existant pour ce réseau"
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2360,33 +2362,33 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 #, fuzzy
 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:1518
+#: lxc/storage_volume.go:1512
 #, fuzzy
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 "Seuls les volumes \"personnalisés\" peuvent être attachés aux conteneurs."
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr "Seules les URLs https sont supportées par simplestreams"
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 #, fuzzy
 msgid "Only https:// is supported for remote image import"
 msgstr "Seul https:// est supporté par l'import d'images distantes."
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 #, 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:84
+#: lxc/operation.go:81
 #, fuzzy, c-format
 msgid "Operation %s deleted"
 msgstr "Le réseau %s a été supprimé"
@@ -2405,35 +2407,35 @@ msgstr "Surcharger le mode terminal (auto, interactif ou non-interactif)"
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr "PERSISTANT"
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr "PROFILS"
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr "PROTOCOLE"
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr "PUBLIC"
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr "Paquets reçus"
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr "Paquets émis"
 
@@ -2470,13 +2472,13 @@ msgstr "État : %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr "Appuyer sur Entrée pour lancer à nouveau l'éditeur"
 
@@ -2511,32 +2513,32 @@ msgstr "l'analyse des alias a échoué %s\n"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr "Profil %s ajouté à %s"
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr "Profil %s créé"
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr "Profil %s supprimé"
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, fuzzy, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr "Profils %s appliqués à %s"
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr "Profil %s supprimé de %s"
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, fuzzy, c-format
 msgid "Profile %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
@@ -2550,7 +2552,7 @@ msgstr "Profil à appliquer au nouveau conteneur"
 msgid "Profile to apply to the target container"
 msgstr "Profil à appliquer au nouveau conteneur"
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr "Profils %s appliqués à %s"
@@ -2560,30 +2562,30 @@ msgstr "Profils %s appliqués à %s"
 msgid "Profiles: %s"
 msgstr "Profils : %s"
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, fuzzy, c-format
 msgid "Project %s created"
 msgstr "Profil %s créé"
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, fuzzy, c-format
 msgid "Project %s deleted"
 msgstr "Profil %s supprimé"
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, fuzzy, c-format
 msgid "Project %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr "Propriétés :"
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr "Serveur d'images public"
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr "Public : %s"
@@ -2628,7 +2630,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr "Pousser ou récupérer des fichiers récursivement"
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 #, fuzzy
 msgid "Refresh images"
 msgstr "Récupération de l'image : %s"
@@ -2638,33 +2640,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:1264
+#: lxc/image.go:1218
 #, fuzzy, c-format
 msgid "Refreshing the image: %s"
 msgstr "Récupération de l'image : %s"
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, fuzzy, c-format
 msgid "Remote %s already exists"
 msgstr "le serveur distant %s existe déjà"
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, fuzzy, c-format
 msgid "Remote %s doesn't exist"
 msgstr "le serveur distant %s n'existe pas"
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, fuzzy, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "le serveur distant %s existe en tant que <%s>"
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, 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:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr "Mot de passe de l'administrateur distant"
 
@@ -2688,11 +2690,11 @@ msgstr "Serveur distant : %s"
 msgid "Remove %s (yes/no): "
 msgstr "Supprimer %s (oui/non) : "
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 #, fuzzy
 msgid "Remove aliases"
 msgstr "Mot de passe de l'administrateur distant"
@@ -2702,25 +2704,25 @@ msgstr "Mot de passe de l'administrateur distant"
 msgid "Remove container devices"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 #, fuzzy
 msgid "Remove profiles from containers"
 msgstr "Création du conteneur"
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2729,34 +2731,34 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr "Forcer le conteneur à s'arrêter"
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 #, fuzzy
 msgid "Rename projects"
 msgstr "Créé : %s"
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 #, fuzzy
 msgid "Rename storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 #, fuzzy
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr "Copie de l'image : %s"
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2799,7 +2801,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 #, fuzzy
 msgid "Restore storage volume snapshots"
 msgstr "Forcer le conteneur à s'arrêter"
@@ -2818,15 +2820,15 @@ msgstr "Récupération de l'image : %s"
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr "TAILLE"
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr "INSTANTANÉS"
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr "SOURCE"
 
@@ -2834,20 +2836,20 @@ msgstr "SOURCE"
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr "ÉTAT"
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr "STATIQUE"
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 #, fuzzy
 msgid "STATUS"
 msgstr "ÉTAT"
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr "ENSEMBLE DE STOCKAGE"
 
@@ -2855,21 +2857,21 @@ msgstr "ENSEMBLE DE STOCKAGE"
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr "Certificat serveur rejeté par l'utilisateur"
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 #, 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:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr "Protocole du serveur (lxd ou simplestreams)"
 
@@ -2907,12 +2909,12 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 #, fuzzy
 msgid "Set network configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2921,12 +2923,12 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 #, fuzzy
 msgid "Set profile configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2935,12 +2937,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2949,12 +2951,12 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 #, fuzzy
 msgid "Set storage pool configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2963,12 +2965,12 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 #, fuzzy
 msgid "Set storage volume configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2977,7 +2979,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -3016,16 +3018,16 @@ msgstr "Afficher la configuration étendue"
 msgid "Show container or server information"
 msgstr "Afficher des informations supplémentaires"
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 #, fuzzy
 msgid "Show content of container file templates"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -3033,7 +3035,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -3047,31 +3049,31 @@ msgstr "Afficher les commandes moins communes"
 msgid "Show local and remote versions"
 msgstr "Afficher la version du client"
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 #, fuzzy
 msgid "Show network configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 #, fuzzy
 msgid "Show profile configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 #, fuzzy
 msgid "Show project options"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 #, fuzzy
 msgid "Show storage volum configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 #, fuzzy
 msgid "Show storage volume configurations"
 msgstr "Afficher la configuration étendue"
@@ -3080,7 +3082,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:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 #, fuzzy
 msgid "Show the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
@@ -3093,23 +3095,23 @@ msgstr "Afficher la configuration étendue"
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr "Taille : %.2f Mo"
@@ -3119,7 +3121,7 @@ msgstr "Taille : %.2f Mo"
 msgid "Size: %s"
 msgstr "État : %s"
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 #, fuzzy
 msgid "Snapshot storage volumes"
 msgstr "Copie de l'image : %s"
@@ -3138,7 +3140,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr "Source :"
 
@@ -3152,7 +3154,7 @@ msgstr "Création du conteneur"
 msgid "Starting %s"
 msgstr "Démarrage de %s"
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, fuzzy, c-format
 msgid "State: %s"
 msgstr "État : %s"
@@ -3180,17 +3182,17 @@ msgstr "L'arrêt du conteneur a échoué !"
 msgid "Stopping the container failed: %s"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, fuzzy, c-format
 msgid "Storage pool %s created"
 msgstr "Le réseau %s a été créé"
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, fuzzy, c-format
 msgid "Storage pool %s deleted"
 msgstr "Le réseau %s a été supprimé"
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, fuzzy, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr "Le réseau %s a été créé"
@@ -3199,22 +3201,22 @@ msgstr "Le réseau %s a été créé"
 msgid "Storage pool name"
 msgstr "Nom de l'ensemble de stockage"
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, fuzzy, c-format
 msgid "Storage volume %s created"
 msgstr "Profil %s créé"
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, fuzzy, c-format
 msgid "Storage volume %s deleted"
 msgstr "Profil %s supprimé"
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 #, fuzzy
 msgid "Storage volume copied successfully!"
 msgstr "Image copiée avec succès !"
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 #, fuzzy
 msgid "Storage volume moved successfully!"
 msgstr "Image copiée avec succès !"
@@ -3242,22 +3244,22 @@ msgstr "Swap (courant)"
 msgid "Swap (peak)"
 msgstr "Swap (pointe)"
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 #, fuzzy
 msgid "Switch the current project"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 #, fuzzy
 msgid "Switch the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr "TYPE"
 
@@ -3322,12 +3324,12 @@ msgstr "Le périphérique indiqué n'existe pas"
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr "Le périphérique indiqué n'existe pas"
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr "le périphérique indiqué ne correspond pas au réseau"
 
@@ -3343,7 +3345,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr "Temps d'attente du conteneur avant de le tuer"
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr "Horodatage :"
 
@@ -3366,7 +3368,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3380,7 +3382,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr "Transfert de l'image : %s"
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3388,7 +3390,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3397,7 +3399,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr "Transfert de l'image : %s"
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr "Transfert de l'image : %s"
@@ -3420,16 +3422,16 @@ msgstr "Type : éphémère"
 msgid "Type: persistent"
 msgstr "Type : persistant"
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr "DATE DE PUBLICATION"
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr "URL"
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr "UTILISÉ PAR"
 
@@ -3443,7 +3445,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3468,32 +3470,32 @@ msgstr "Clé de configuration invalide"
 msgid "Unset container or server configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 #, fuzzy
 msgid "Unset network configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 #, fuzzy
 msgid "Unset profile configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 #, fuzzy
 msgid "Unset storage pool configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 #, fuzzy
 msgid "Unset storage volume configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr "Publié : %s"
@@ -3512,7 +3514,7 @@ msgstr "Publié : %s"
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 #, fuzzy
 msgid "User aborted delete operation"
 msgstr "L'utilisateur a annulé l'opération de suppression."
@@ -3563,8 +3565,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:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr "OUI"
 
@@ -3587,15 +3589,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:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3603,40 +3605,40 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 #, fuzzy
 msgid "alias"
 msgstr "Alias :"
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3648,15 +3650,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3664,48 +3666,48 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 #, fuzzy
 msgid "current"
 msgstr "Swap (courant)"
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr "par défaut"
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3731,7 +3733,7 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 #, fuzzy
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -3739,19 +3741,19 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 #, fuzzy
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -3759,11 +3761,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 #, fuzzy
 msgid "delete [<remote>:]<project>"
 msgstr ""
@@ -3771,23 +3773,23 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3795,11 +3797,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr "désactivé"
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3807,7 +3809,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3815,19 +3817,19 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 #, fuzzy
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -3839,11 +3841,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3859,11 +3861,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr "activé"
 
@@ -3891,7 +3893,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3903,15 +3905,15 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 #, fuzzy
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
@@ -3923,11 +3925,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 #, fuzzy
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
@@ -3939,16 +3941,16 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 #, fuzzy
 msgid "get-default"
 msgstr "par défaut"
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3958,19 +3960,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3990,20 +3992,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -4015,27 +4017,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -4085,7 +4087,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -4127,7 +4129,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -4177,13 +4179,13 @@ msgstr ""
 "lxc move <container>/<old snapshot name> <container>/<new snapshot name>\n"
 "    Renomme un instantané."
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -4195,13 +4197,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -4228,19 +4230,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -4263,7 +4265,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4281,24 +4283,24 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 #, fuzzy
 msgid "network"
 msgstr "Nom du réseau"
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr "non"
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr "ok (y/n) ?"
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 #, fuzzy
 msgid "operation"
 msgstr "Propriétés :"
@@ -4319,12 +4321,12 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 #, fuzzy
 msgid "profile"
 msgstr "Profils : %s"
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -4367,7 +4369,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -4375,24 +4377,24 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 #, fuzzy
 msgid "remote"
 msgstr "Serveur distant : %s"
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4400,19 +4402,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4428,15 +4430,15 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 #, fuzzy
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
@@ -4450,11 +4452,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4470,7 +4472,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 #, fuzzy
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
@@ -4490,7 +4492,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
@@ -4498,11 +4500,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
@@ -4510,7 +4512,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
@@ -4518,7 +4520,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4534,7 +4536,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4542,7 +4544,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4550,27 +4552,27 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 #, fuzzy
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -4582,11 +4584,11 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4606,7 +4608,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 #, fuzzy
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
@@ -4618,7 +4620,7 @@ msgstr ""
 "Détruit les conteneurs ou les instantanés ainsi que toute donnée associée "
 "(configuration, instantanés, …)."
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4646,16 +4648,16 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 #, fuzzy
 msgid "switch <remote>"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 #, fuzzy
 msgid "switch [<remote>:] <project>"
 msgstr "impossible de supprimer le serveur distant par défaut"
@@ -4665,15 +4667,15 @@ msgstr "impossible de supprimer le serveur distant par défaut"
 msgid "taken at %s"
 msgstr "pris à %s"
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4685,23 +4687,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
@@ -4713,7 +4715,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4721,17 +4723,17 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 #, fuzzy
 msgid "volume"
 msgstr "Colonnes"
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 daeb30f25c..739dfaa2b2 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 5d2a8c7d4f..fa825e8dc2 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 3237c96e35..879c0507f4 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2.17-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
@@ -51,7 +51,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -110,7 +110,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -127,7 +127,7 @@ msgstr ""
 "### Un esempio è il seguente:\n"
 "###  description: My custom image"
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -147,7 +147,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -205,7 +205,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (altri %d)"
@@ -225,7 +225,7 @@ 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:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr "(nessuno)"
 
@@ -261,27 +261,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr "ALIAS"
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr "ARCH"
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr "ARCHITETTURA"
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 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:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Alias:"
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -315,30 +315,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Password amministratore per %s: "
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, fuzzy, c-format
 msgid "Alias %s already exists"
 msgstr "il remote %s esiste già"
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, fuzzy, c-format
 msgid "Alias %s doesn't exist"
 msgstr "il remote %s non esiste"
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr "Alias:"
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architettura: %s"
@@ -348,27 +348,27 @@ msgstr "Architettura: %s"
 msgid "Architecture: %v"
 msgstr "Architettura: %s"
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -384,7 +384,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -394,12 +394,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr "Aggiornamento automatico: %s"
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -407,18 +407,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr "Proprietà errata: %s"
@@ -437,19 +437,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes ricevuti"
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Byte inviati"
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr "NOME COMUNE"
 
@@ -471,12 +471,12 @@ msgstr "Utilizzo CPU:"
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 #, fuzzy
 msgid "CREATED"
 msgstr "CREATO IL"
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr "CREATO IL"
 
@@ -485,7 +485,7 @@ msgstr "CREATO IL"
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -498,7 +498,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -506,16 +506,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr "Impossibile effettuare il pull di una directory senza --recursive"
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr "Impossible leggere da stdin: %s"
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -536,7 +536,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -550,12 +550,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr "Certificato del client salvato dal server: "
 
@@ -566,23 +566,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr "Colonne"
 
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -611,8 +611,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -644,7 +644,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -652,11 +652,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -668,11 +668,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -680,7 +680,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -688,12 +688,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -707,11 +707,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -746,27 +746,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "Creazione del container in corso"
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -793,16 +793,16 @@ msgstr "Creazione del container in corso"
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr "DESCRIZIONE"
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr "DRIVER"
 
@@ -814,11 +814,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -830,99 +830,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -941,7 +941,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr "La periferica esiste già: %s"
@@ -955,7 +955,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr "Import da directory non disponibile su questa piattaforma"
 
@@ -986,7 +986,7 @@ msgstr "Utilizzo disco:"
 msgid "Disks:"
 msgstr "Utilizzo disco:"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -999,15 +999,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr "DATA DI SCADENZA"
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1023,40 +1023,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1107,20 +1107,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1142,17 +1142,17 @@ msgstr "Creazione del container in corso"
 msgid "Exporting the backup: %s"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1160,7 +1160,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1169,7 +1169,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1179,16 +1179,16 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 #, fuzzy
 msgid "Filtering isn't supported yet"
 msgstr "'%s' non è un tipo di file supportato."
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1197,7 +1197,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1237,8 +1237,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1269,11 +1272,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1313,7 +1316,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1321,7 +1324,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1335,23 +1338,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1370,33 +1373,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1409,14 +1412,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1433,7 +1436,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1442,33 +1445,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Proprietà errata: %s"
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1484,7 +1486,7 @@ msgstr "numero errato di argomenti del sottocomando"
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, fuzzy, c-format
 msgid "Invalid protocol: %s"
 msgstr "Proprietà errata: %s"
@@ -1499,20 +1501,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1520,16 +1522,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1543,11 +1545,11 @@ msgstr "Architettura: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 #, fuzzy
 msgid "List aliases"
 msgstr "Alias:"
@@ -1556,15 +1558,15 @@ msgstr "Alias:"
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1576,12 +1578,12 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 #, fuzzy
 msgid "List containers"
 msgstr "Creazione del container in corso"
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1646,22 +1648,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1687,7 +1689,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1695,19 +1697,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1720,29 +1722,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1750,15 +1752,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1771,7 +1773,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr "Creazione del container in corso"
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1784,15 +1786,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr "Creazione del container in corso"
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1811,23 +1813,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1835,11 +1837,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1848,12 +1850,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1887,14 +1889,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 #, fuzzy
 msgid "Missing container name"
 msgstr "Il nome del container è: %s"
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1904,41 +1906,41 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 #, fuzzy
 msgid "Missing project name"
 msgstr "Il nome del container è: %s"
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1967,8 +1969,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1980,7 +1982,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1988,12 +1990,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -2001,9 +2003,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2015,8 +2017,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2038,7 +2040,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -2048,22 +2050,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2072,7 +2074,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2080,7 +2082,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2088,19 +2090,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2114,27 +2116,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2152,35 +2154,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2216,13 +2218,13 @@ msgstr "Aggiornamento automatico: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2257,32 +2259,32 @@ msgstr "errore di processamento degli alias %s\n"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2295,7 +2297,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2305,30 +2307,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2369,7 +2371,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2378,33 +2380,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, fuzzy, c-format
 msgid "Remote %s already exists"
 msgstr "il remote %s esiste già"
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, fuzzy, c-format
 msgid "Remote %s doesn't exist"
 msgstr "il remote %s non esiste"
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, fuzzy, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "il remote %s esiste come %s"
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, 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:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2427,11 +2429,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2439,24 +2441,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2464,31 +2466,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2529,7 +2531,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2546,15 +2548,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2562,19 +2564,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2582,19 +2584,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2630,11 +2632,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2643,11 +2645,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2656,11 +2658,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2669,11 +2671,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2682,11 +2684,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2695,7 +2697,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2731,15 +2733,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2747,7 +2749,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2759,27 +2761,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2787,7 +2789,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2799,23 +2801,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2825,7 +2827,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr "Aggiornamento automatico: %s"
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2843,7 +2845,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2857,7 +2859,7 @@ msgstr "Creazione del container in corso"
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, fuzzy, c-format
 msgid "State: %s"
 msgstr "Aggiornamento automatico: %s"
@@ -2884,17 +2886,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2903,21 +2905,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2944,20 +2946,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3015,12 +3017,12 @@ msgstr "il remote %s non esiste"
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -3036,7 +3038,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -3057,7 +3059,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3071,7 +3073,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3079,7 +3081,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3088,7 +3090,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3111,16 +3113,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3134,7 +3136,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3157,27 +3159,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3196,7 +3198,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3243,8 +3245,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3265,15 +3267,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:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3281,40 +3283,40 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 #, fuzzy
 msgid "alias"
 msgstr "Alias:"
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3326,15 +3328,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3342,47 +3344,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3396,51 +3398,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3448,11 +3450,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3460,7 +3462,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3468,27 +3470,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3497,11 +3499,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr "Creazione del container in corso"
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3525,7 +3527,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3537,23 +3539,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3561,15 +3563,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3579,19 +3581,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3607,20 +3609,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3632,27 +3634,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3702,7 +3704,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3734,7 +3736,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3772,13 +3774,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3790,13 +3792,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3823,19 +3825,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3858,7 +3860,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3868,23 +3870,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr "no"
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr "ok (y/n)?"
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3900,11 +3902,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3930,27 +3932,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3958,19 +3960,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3978,25 +3980,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4008,7 +4010,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -4016,23 +4018,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4041,7 +4043,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr "Creazione del container in corso"
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4049,7 +4051,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4057,35 +4059,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4098,11 +4100,11 @@ msgstr "Creazione del container in corso"
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4122,15 +4124,15 @@ msgstr "senza stato"
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4139,15 +4141,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr "salvato alle %s"
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4159,23 +4161,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4183,7 +4185,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4191,17 +4193,17 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 #, fuzzy
 msgid "volume"
 msgstr "Colonne"
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 2caf23cfab..9817d0bce7 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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-"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 3.7-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -36,7 +36,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -95,7 +95,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -105,7 +105,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -125,7 +125,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -168,7 +168,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (他%d個)"
@@ -189,7 +189,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr "'%s' はサポートされないタイプのファイルです"
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -227,27 +227,27 @@ msgstr "--refresh はコンテナの場合のみ使えます"
 msgid "--target cannot be used with containers"
 msgstr "--refresh はコンテナの場合のみ使えます"
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr "証明書を受け入れます"
 
@@ -259,19 +259,19 @@ msgstr "使用するHTTPのメソッド (デフォルト: GET)"
 msgid "Add devices to containers or profiles"
 msgstr "コンテナもしくはプロファイルにデバイスを追加します"
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr "新たにエイリアスを追加します"
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr "新たにリモートサーバを追加します"
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr "新たに信頼済みのクライアントを追加します"
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr "コンテナにプロファイルを追加します"
 
@@ -280,30 +280,30 @@ msgstr "コンテナにプロファイルを追加します"
 msgid "Address: %s"
 msgstr "MAC アドレス: %s"
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr "%s の管理者パスワード: "
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr "エイリアス %s は既に存在します"
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr "エイリアス %s は存在しません"
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr "エイリアスを指定してください"
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr "エイリアス:"
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr "アーキテクチャ: %s"
@@ -313,27 +313,27 @@ msgstr "アーキテクチャ: %s"
 msgid "Architecture: %v"
 msgstr "アーキテクチャ: %s"
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr "コンテナにプロファイルを割り当てます"
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr "コンテナにネットワークインターフェースを追加します"
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr "プロファイルにネットワークインターフェースを追加します"
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr "新たなネットワークインターフェースをコンテナに追加します"
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr "新たにストレージボリュームをコンテナに追加します"
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr "新しいストレージボリュームをプロファイルに追加します"
 
@@ -353,7 +353,7 @@ msgstr ""
 "このコマンドはコンテナのブートコンソールに接続できます。\n"
 "そしてそこから過去のログエントリを取り出すことができます。"
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "認証タイプ '%s' はサーバではサポートされていません"
@@ -363,12 +363,12 @@ msgstr "認証タイプ '%s' はサーバではサポートされていません
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr "自動更新: %s"
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -376,18 +376,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr "バックアップのエクスポートが成功しました!"
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr "不適切なキー/値のペア: %s"
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr "不適切な キー=値 のペア: %s"
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr "不正なイメージプロパティ形式: %s"
@@ -407,19 +407,19 @@ msgstr "--all とコンテナ名を両方同時に指定することはできま
 msgid "Brand: %v"
 msgstr "作成日時: %s"
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr "受信バイト数"
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "送信バイト数"
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -441,11 +441,11 @@ msgstr "CPU使用量:"
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -454,7 +454,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr "クライアントバージョン: %s\n"
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr "キャッシュ済: %s"
@@ -468,7 +468,7 @@ msgstr "キャッシュ済: %s"
 msgid "Can't override configuration or profiles in local rename"
 msgstr "ローカル上のリネームでは、設定やプロファイルの上書きはできません"
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr "ターゲットイメージの名前を取得できません"
 
@@ -477,17 +477,17 @@ msgid "Can't pull a directory without --recursive"
 msgstr ""
 "ディレクトリを pull する場合は --recursive オプションを使用してください"
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr "標準入力から読み込めません: %s"
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 #, fuzzy
 msgid "Can't remove the default remote"
 msgstr "デフォルトのリモートは削除できません"
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr "クラスタでない場合はカラムとして L は指定できません"
 
@@ -508,7 +508,7 @@ msgstr "再帰 (recursive) モードでは uid/gid/mode を指定できません
 msgid "Can't unset key '%s', it's not currently set"
 msgstr "キー '%s' が設定されていないので削除できません"
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr "使用する Candid ドメイン"
 
@@ -522,12 +522,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr "キャッシュ済: %s"
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "証明書のフィンガープリント: %s"
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr "クライアント証明書がサーバに格納されました: "
 
@@ -538,23 +538,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr "クラスタメンバ名"
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr "クラスタリングが有効になりました"
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr "カラムレイアウト"
 
@@ -578,7 +578,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr "新しいコンテナに適用するキー/値の設定"
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr "新しいプロジェクトに適用するキー/値の設定"
 
@@ -587,8 +587,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr "設定の構文エラー: %s"
@@ -620,7 +620,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr "ステートフルなコンテナをステートレスにコピーします"
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr "ソースからエイリアスをコピーしました"
 
@@ -628,11 +628,11 @@ msgstr "ソースからエイリアスをコピーしました"
 msgid "Copy containers within or in between LXD instances"
 msgstr "LXD インスタンス内に、またはインスタンス間でコンテナをコピーします"
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr "サーバ間でイメージをコピーします"
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -648,11 +648,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr "プロファイルに継承されたデバイスをコピーし、設定キーを上書きします"
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr "プロファイルをコピーします"
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr "ストレージボリュームをコピーします"
 
@@ -660,7 +660,7 @@ msgstr "ストレージボリュームをコピーします"
 msgid "Copy the container without its snapshots"
 msgstr "コンテナをコピーします (スナップショットはコピーしません)"
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr "ボリュームをコピーします (スナップショットはコピーしません)"
 
@@ -668,12 +668,12 @@ msgstr "ボリュームをコピーします (スナップショットはコピ
 msgid "Copy to a project different from the source"
 msgstr "コピー/移動元とは異なるプロジェクトにコピーします"
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr "イメージのコピー中: %s"
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr "ストレージボリュームのコピー中: %s"
@@ -688,11 +688,11 @@ msgstr "エラー: %v"
 msgid "Cores:"
 msgstr "エラー: %v"
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr "サーバ証明書格納用のディレクトリを作成できません"
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr "既存のイメージに対するエイリアスを作成します"
 
@@ -729,27 +729,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr "イメージからコンテナを作成します"
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr "新たにコンテナのファイルテンプレートを作成します"
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr "新たにカスタムストレージボリュームを作成します"
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr "新たにネットワークを作成します"
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr "プロファイルを作成します"
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr "プロジェクトを作成します"
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr "ストレージプールを作成します"
 
@@ -757,7 +757,7 @@ msgstr "ストレージプールを作成します"
 msgid "Create the container with no profiles applied"
 msgstr "プロファイルを適用しないコンテナを作成します"
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr "作成日時: %s"
@@ -776,16 +776,16 @@ msgstr "コンテナを作成中"
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -797,11 +797,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr "圧縮アルゴリズムを指定します: 圧縮アルゴリズム名 or none"
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr "バックグラウンドの操作を削除します(キャンセルを試みます)"
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr "コンテナのファイルテンプレートを削除します"
 
@@ -813,99 +813,99 @@ msgstr "コンテナとスナップショットを削除します"
 msgid "Delete files in containers"
 msgstr "コンテナ内のファイルを削除します"
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr "イメージのエイリアスを削除します"
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr "イメージを削除します"
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr "ネットワークを削除します"
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr "プロファイルを削除します"
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr "プロジェクトを削除します"
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr "ストレージプールを削除します"
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr "説明"
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr "コンテナからネットワークインターフェースを取り外します"
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr "プロファイルからネットワークインターフェースを取り外します"
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr "コンテナからストレージボリュームを取り外します"
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr "プロファイルからストレージボリュームを取り外します"
 
@@ -924,7 +924,7 @@ msgstr "デバイス %s が %s で上書きされました"
 msgid "Device %s removed from %s"
 msgstr "デバイス %s が %s から削除されました"
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr "デバイスは既に存在します: %s"
@@ -941,7 +941,7 @@ msgstr ""
 "サーバから変更されたイメージ、コンテナ、スナップショットを取得できませんで\n"
 "した"
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr "このプラットフォーム上ではディレクトリのインポートは利用できません"
 
@@ -972,7 +972,7 @@ msgstr "ディスク使用量:"
 msgid "Disks:"
 msgstr "ディスク使用量:"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 #, fuzzy
 msgid "Don't require user confirmation for using --force"
 msgstr "ユーザの確認を要求する"
@@ -986,15 +986,15 @@ msgstr "進捗情報を表示しません"
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr "コンテナのファイルテンプレートを編集します"
 
@@ -1010,42 +1010,42 @@ msgstr "コンテナもしくはサーバの設定をYAMLファイルで編集
 msgid "Edit files in containers"
 msgstr "コンテナ内のファイルを編集します"
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr "イメージのプロパティを編集します"
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr "ネットワーク設定をYAMLで編集します"
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr "プロファイル設定をYAMLで編集します"
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr "プロジェクト設定をYAMLで編集します"
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr "ストレージプールの設定をYAMLで編集します"
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr "ストレージボリュームの設定をYAMLで編集します"
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 "'%s' 中のカラムエントリが空です (カラムの指定に空文字列が指定されています)"
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 "クラスタリングで動作していないLXDインスタンス上でクラスタリングを有効にします"
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr "テンプレートファイル更新のエラー: %s"
@@ -1116,20 +1116,20 @@ msgstr ""
 "デフォルトのモードは non-interactive です。もし標準入出力が両方ともターミナル"
 "の場合は interactive モードが選択されます (標準エラー出力は無視されます)。"
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr "失効日時: %s"
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr "失効日時: 失効しない"
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr "イメージをエクスポートしてダウンロードします"
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1152,17 +1152,17 @@ msgstr "コンテナを tarball 形式のバックアップとしてエクスポ
 msgid "Exporting the backup: %s"
 msgstr "バックアップのエクスポート中: %s"
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr "イメージのエクスポート中: %s"
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1170,7 +1170,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr "クラスタメンバへの接続に失敗しました"
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr "エイリアス %s の作成に失敗しました"
@@ -1179,7 +1179,7 @@ msgstr "エイリアス %s の作成に失敗しました"
 msgid "Failed to get the new container name"
 msgstr "新しいコンテナ名が取得できません"
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr "エイリアス %s の削除に失敗しました"
@@ -1189,15 +1189,15 @@ msgstr "エイリアス %s の削除に失敗しました"
 msgid "Failed to walk path for %s: %s"
 msgstr "パス %s にアクセスできませんでした: %s"
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr "Fast モード (--columns=nsacPt と同じ)"
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr "情報表示のフィルタリングはまだサポートされていません"
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr "証明書のフィンガープリント: %s"
@@ -1206,7 +1206,7 @@ msgstr "証明書のフィンガープリント: %s"
 msgid "Force pseudo-terminal allocation"
 msgstr "強制的に擬似端末を割り当てます"
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1246,8 +1246,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr "フォーマット (csv|json|table|yaml)"
 
@@ -1278,11 +1281,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr "すべてのコマンドに対する man ページを作成します"
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr "クライアント証明書を生成します。1分ぐらいかかります..."
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr "ネットワークのランタイム情報を取得します"
 
@@ -1294,23 +1297,23 @@ msgstr "コンテナのデバイスの設定値を取得します"
 msgid "Get values for container or server configuration keys"
 msgstr "コンテナもしくはサーバの設定値を取得します"
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr "ネットワークの設定値を取得します"
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr "プロファイルの設定値を取得します"
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr "プロジェクトの設定値を取得します"
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr "ストレージプールの設定値を取得します"
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr "ストレージボリュームの設定値を取得します"
 
@@ -1322,7 +1325,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1330,7 +1333,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr "ID"
 
@@ -1344,23 +1347,23 @@ msgstr "Pid: %d"
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr "IPV4"
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr "IPV6"
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1378,33 +1381,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "コンテナの状態を無視します"
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr "イメージは更新済みです。"
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr "イメージのコピーが成功しました!"
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr "イメージのエクスポートが成功しました!"
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr "イメージ名を指定してください"
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr "イメージ名を指定してください: %s"
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr "イメージは以下のフィンガープリントでインポートされました: %s"
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr "イメージの更新が成功しました!"
 
@@ -1417,7 +1420,7 @@ msgstr ""
 msgid "Import container backups"
 msgstr "コンテナのバックアップをインポートします"
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
@@ -1428,7 +1431,7 @@ msgstr ""
 "ディレクトリのインポートは Linux 上でのみ可能で、root で実行する必要がありま"
 "す。"
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr "イメージをイメージストアにインポートします"
 
@@ -1445,7 +1448,7 @@ msgstr "入力するデータ"
 msgid "Instance type"
 msgstr "インスタンスタイプ"
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr "不正な URL スキーム \"%s\" (\"%s\" 内)"
@@ -1454,36 +1457,35 @@ msgstr "不正な URL スキーム \"%s\" (\"%s\" 内)"
 msgid "Invalid certificate"
 msgstr "不正な証明書です"
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "'%s' は正しくない設定項目 (key) です (%s 中の)"
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 "不正な設定項目のカラムフォーマットです (フィールド数が多すぎます): '%s'"
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr "不正なフォーマット %q"
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 "'%s' は最大幅の値として不正です (-1 もしくは 0 もしくは正の整数でなくてはなり"
 "ません) ('%s' 中の)"
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr "'%s' は最大幅の値として不正です (整数でなくてはなりません) ('%s' 中の)"
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1499,7 +1501,7 @@ msgstr "引数の数が不正です"
 msgid "Invalid path %s"
 msgstr "不正なパス %s"
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr "不正なプロトコル: %s"
@@ -1514,20 +1516,20 @@ msgstr "不正なソース %s"
 msgid "Invalid target %s"
 msgstr "不正な送り先 %s"
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr "IPアドレス:"
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr "最初にコピーした後も常にイメージを最新の状態に保つ"
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1535,16 +1537,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr "LXD - コマンドラインクライアント"
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr "LXD サーバはクラスタの一部ではありません"
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr "最終使用: %s"
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr "最終使用: 未使用"
 
@@ -1558,11 +1560,11 @@ msgstr "アーキテクチャ: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr "DHCP のリースを一覧表示します"
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr "エイリアスを一覧表示します"
 
@@ -1570,15 +1572,15 @@ msgstr "エイリアスを一覧表示します"
 msgid "List all the cluster members"
 msgstr "クラスタのメンバをすべて一覧表示します"
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr "利用可能なネットワークを一覧表示します"
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr "利用可能なストレージプールを一覧表示します"
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr "バックグラウンド操作を一覧表示します"
 
@@ -1590,11 +1592,11 @@ msgstr "コンテナのデバイスを一覧表示します"
 msgid "List container file templates"
 msgstr "コンテナのファイルテンプレートを一覧表示します"
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr "コンテナを一覧表示します"
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 #, fuzzy
 msgid ""
 "List containers\n"
@@ -1717,11 +1719,11 @@ msgstr ""
 "MAXWIDTH: カラムの最大幅 (結果がこれより長い場合は切り詰められます)\n"
 "          デフォルトは -1 (制限なし)。0 はカラムのヘッダサイズに制限します。"
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr "イメージのエイリアスを一覧表示します"
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
@@ -1732,11 +1734,11 @@ msgstr ""
 "指定するフィルタはイメージのハッシュ値の一部でもイメージのエイリアスの一部で"
 "も構いません。\n"
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr "イメージを一覧表示します"
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1785,7 +1787,7 @@ msgstr ""
 "    s - サイズ\n"
 "    u - アップロード日"
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr "プロファイルを一覧表示します"
 
@@ -1793,19 +1795,19 @@ msgstr "プロファイルを一覧表示します"
 msgid "List projects"
 msgstr "プロジェクトを一覧表示します"
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr "ストレージボリュームを一覧表示します"
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr "利用可能なリモートサーバを一覧表示します"
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr "信頼済みクライアントを一覧表示します"
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr "バックグラウンド操作の一覧表示、表示、削除を行います"
 
@@ -1818,29 +1820,29 @@ msgstr "ロケーション: %s"
 msgid "Log:"
 msgstr "ログ:"
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr "MAC アドレス: %s"
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr "イメージを public にする"
 
@@ -1848,15 +1850,15 @@ msgstr "イメージを public にする"
 msgid "Make the image public"
 msgstr "イメージを public にする"
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr "ネットワークを管理し、コンテナをネットワークに接続します"
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr "クラスタのメンバを管理します"
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr "コマンドのエイリアスを管理します"
 
@@ -1868,7 +1870,7 @@ msgstr "コンテナやサーバの設定を管理します"
 msgid "Manage container devices"
 msgstr "コンテナのデバイスを管理します"
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr "コンテナのファイルテンプレートを管理します"
 
@@ -1880,15 +1882,15 @@ msgstr "コンテナのメタデータファイルを管理します"
 msgid "Manage files in containers"
 msgstr "コンテナ内のファイルを管理します"
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr "イメージのエイリアスを管理します"
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr "イメージを管理します"
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1920,23 +1922,23 @@ msgstr ""
 "イメージは全ハッシュ文字列、一意に定まるハッシュの短縮表現、(設定され\n"
 "ている場合は) エイリアスで参照できます。"
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr "プロファイルを管理します"
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr "プロジェクトを管理します"
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr "ストレージプール、ストレージボリュームを管理します"
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr "ストレージボリュームを管理します"
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1948,11 +1950,11 @@ msgstr ""
 "プレフィックスで指定しない限りは、ボリュームに対する操作はすべて \"カスタム"
 "\" (ユーザが作成した) ボリュームに対して行われます。"
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr "リモートサーバのリストを管理します"
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr "信頼済みのクライアントを管理します"
 
@@ -1961,12 +1963,12 @@ msgstr "信頼済みのクライアントを管理します"
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr "メンバ %s が削除されました"
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr "メンバ名 %s を %s に変更しました"
@@ -2001,13 +2003,13 @@ msgid "Minimum level for log messages"
 msgstr "表示するログメッセージの最小レベル"
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr "コンテナ名を指定する必要があります"
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr "コンテナ名を指定する必要があります"
 
@@ -2017,40 +2019,40 @@ msgstr "コンテナ名を指定する必要があります"
 msgid "Missing name"
 msgstr "名前を指定する必要があります"
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr "ネットワーク名を指定する必要があります"
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr "ストレージプール名を指定する必要があります"
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr "プロファイル名を指定する必要があります"
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr "プロジェクト名を指定する必要があります"
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr "コピー元のプロファイル名を指定する必要があります"
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr "コピー元のボリューム名を指定する必要があります"
 
@@ -2082,8 +2084,8 @@ msgstr ""
 "\n"
 "デフォルトではすべてのタイプのメッセージをモニタリングします。"
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr "複数のデバイスとマッチします。デバイス名を指定してください"
 
@@ -2097,7 +2099,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr "LXD サーバ内もしくはサーバ間でコンテナを移動します"
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr "プール間でストレージボリュームを移動します"
 
@@ -2105,12 +2107,12 @@ msgstr "プール間でストレージボリュームを移動します"
 msgid "Move the container without its snapshots"
 msgstr "コンテナを移動します (スナップショットは移動しません)"
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr "ストレージボリュームの移動中: %s"
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr "ディレクトリからのインポートは root で実行する必要があります"
 
@@ -2118,9 +2120,9 @@ msgstr "ディレクトリからのインポートは root で実行する必要
 msgid "Must supply container name for: "
 msgstr "コンテナ名を指定する必要があります: "
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2132,8 +2134,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2155,7 +2157,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr "名前: %s"
@@ -2165,22 +2167,22 @@ msgstr "名前: %s"
 msgid "Name: %v"
 msgstr "名前: %s"
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr "ネットワーク %s を作成しました"
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr "ネットワーク %s を削除しました"
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr "ネットワーク %s はメンバ %s 上でペンディング状態です"
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr "ネットワーク名 %s を %s に変更しました"
@@ -2189,7 +2191,7 @@ msgstr "ネットワーク名 %s を %s に変更しました"
 msgid "Network name"
 msgstr "ネットワーク名:"
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr "ネットワーク使用状況:"
 
@@ -2197,7 +2199,7 @@ msgstr "ネットワーク使用状況:"
 msgid "New alias to define at target"
 msgstr "新しいエイリアスを定義する"
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr "イメージに新しいエイリアスを追加します"
 
@@ -2205,19 +2207,19 @@ msgstr "イメージに新しいエイリアスを追加します"
 msgid "New key/value to apply to a specific device"
 msgstr "指定するデバイスに適用する新しいキー/値"
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr "このネットワークに対するデバイスがありません"
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr "このストレージボリュームに対するデバイスがありません"
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr "コピー元のボリュームに対するストレージプールが指定されていません"
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr "コピー先のボリュームに対するストレージプールが指定されていません"
 
@@ -2231,27 +2233,27 @@ msgstr "%q に設定する値が指定されていません"
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr "\"カスタム\" のボリュームのみがコンテナにアタッチできます"
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr "\"カスタム\" のボリュームのみがスナップショットを取得できます"
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr "simplestreams は https の URL のみサポートします"
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr "リモートイメージのインポートは https:// のみをサポートします"
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr "管理対象のネットワークのみ変更できます"
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr "バックグラウンド操作 %s を削除しました"
@@ -2269,35 +2271,35 @@ msgstr "ターミナルモードを上書きします (auto, interactive, non-in
 msgid "PCI address: %v"
 msgstr "MAC アドレス: %s"
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr "受信パケット"
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr "送信パケット"
 
@@ -2333,13 +2335,13 @@ msgstr "状態: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr "再度エディタを起動するには Enter キーを押します"
 
@@ -2374,32 +2376,32 @@ msgstr "エイリアスの処理が失敗しました: %s\n"
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr "プロファイル %s が %s に追加されました"
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr "プロファイル %s を作成しました"
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr "プロファイル %s を削除しました"
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr "プロファイル %s は %s に適用されていません"
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr "プロファイル %s が %s から削除されました"
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr "プロファイル名 %s を %s に変更しました"
@@ -2412,7 +2414,7 @@ msgstr "新しいコンテナに適用するプロファイル"
 msgid "Profile to apply to the target container"
 msgstr "移動先のコンテナに適用するプロファイル"
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr "プロファイル %s が %s に追加されました"
@@ -2422,30 +2424,30 @@ msgstr "プロファイル %s が %s に追加されました"
 msgid "Profiles: %s"
 msgstr "プロファイル: %s"
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr "プロジェクト %s を作成しました"
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr "プロジェクト %s を削除しました"
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr "プロジェクト名 %s を %s に変更しました"
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr "プロパティ:"
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr "Public なイメージサーバとして設定します"
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr "パブリック: %s"
@@ -2486,7 +2488,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr "再帰的にファイルを転送します"
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr "イメージを更新します"
 
@@ -2495,33 +2497,33 @@ msgstr "イメージを更新します"
 msgid "Refreshing container: %s"
 msgstr "コンテナの更新中: %s"
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr "イメージの更新中: %s"
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr "リモート %s は既に存在します"
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr "リモート %s は存在しません"
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr "リモート %s は <%s> として存在します"
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr "リモート %s は static ですので変更できません"
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr "リモートの管理者パスワード"
 
@@ -2544,11 +2546,11 @@ msgstr "リモート名: %s"
 msgid "Remove %s (yes/no): "
 msgstr "%s を消去しますか (yes/no): "
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr "クラスタからメンバを削除します"
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr "エイリアスを削除します"
 
@@ -2556,24 +2558,24 @@ msgstr "エイリアスを削除します"
 msgid "Remove container devices"
 msgstr "コンテナのデバイスを削除します"
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr "コンテナからプロファイルを削除します"
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr "リモートサーバを削除します"
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr "信頼済みクライアントを削除します"
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr "クラスタメンバの名前を変更します"
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr "エイリアスの名前を変更します"
 
@@ -2581,32 +2583,32 @@ msgstr "エイリアスの名前を変更します"
 msgid "Rename containers and snapshots"
 msgstr "コンテナまたはコンテナのスナップショットの名前を変更します"
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr "ネットワーク名を変更します"
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr "プロファイル名を変更します"
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr "プロジェクト名を変更します"
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr "リモートサーバ名を変更します"
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr "ストレージボリューム名を変更します"
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 "ストレージボリューム名とストレージボリュームのスナップショット名を変更します"
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr "ストレージボリューム名 \"%s\" を \"%s\" に変更しました"
@@ -2652,7 +2654,7 @@ msgstr ""
 "\n"
 "--stateful オプションを指定すると、コンテナの実行状態もリストアします。"
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr "スナップショットからストレージボリュームをリストアします"
 
@@ -2669,15 +2671,15 @@ msgstr "イメージの取得中: %s"
 msgid "Run command against all containers"
 msgstr "すべてのコンテナに対してコマンドを実行します"
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2685,19 +2687,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2705,19 +2707,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr "直接リクエスト (raw query) を LXD に送ります"
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr "サーバの認証タイプ (tls もしくは candid)"
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr "ユーザによりサーバ証明書が拒否されました"
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr "認証後、サーバが我々を信用していません"
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr "サーバのプロトコル (lxd or simplestreams)"
 
@@ -2753,11 +2755,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr "ネットワークの設定項目を設定します"
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2766,11 +2768,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr "プロファイルの設定項目を設定します"
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2779,11 +2781,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr "プロジェクトの設定項目を設定します"
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2792,11 +2794,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr "ストレージプールの設定項目を設定します"
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2805,11 +2807,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr "ストレージボリュームの設定項目を設定します"
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2818,7 +2820,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr "リモートの URL を設定します"
 
@@ -2854,15 +2856,15 @@ msgstr "コンテナもしくはサーバの設定を表示します"
 msgid "Show container or server information"
 msgstr "コンテナもしくはサーバの情報を表示します"
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr "コンテナのファイルテンプレートの内容を表示します"
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr "クラスタメンバの詳細を表示します"
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr "バックグラウンド操作の詳細を表示します"
 
@@ -2870,7 +2872,7 @@ msgstr "バックグラウンド操作の詳細を表示します"
 msgid "Show full device configuration for containers or profiles"
 msgstr "コンテナもしくはプロファイルのデバイス設定をすべて表示します"
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr "イメージのプロパティを表示します"
 
@@ -2882,27 +2884,27 @@ msgstr "全てのコマンドを表示します (主なコマンドだけでは
 msgid "Show local and remote versions"
 msgstr "ローカルとリモートのバージョンを表示します"
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr "ネットワークの設定を表示します"
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr "プロファイルの設定を表示します"
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr "プロジェクトの設定を表示します"
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr "ストレージプールの設定とリソースを表示します"
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr "ストレージボリュームの設定を表示します"
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr "ストレージボリュームの設定を表示する"
 
@@ -2910,7 +2912,7 @@ msgstr "ストレージボリュームの設定を表示する"
 msgid "Show the container's last 100 log lines?"
 msgstr "コンテナログの最後の 100 行を表示しますか?"
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr "デフォルトのリモートを表示します"
 
@@ -2922,23 +2924,23 @@ msgstr "拡張した設定を表示する"
 msgid "Show the resources available to the server"
 msgstr "サーバで使用可能なリソースを表示します"
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr "ストレージプールで利用可能なリソースを表示します"
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr "使用量と空き容量を byte で表示します"
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr "イメージについての情報を表示します"
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr "ストレージプールの情報を表示します"
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr "サイズ: %.2fMB"
@@ -2948,7 +2950,7 @@ msgstr "サイズ: %.2fMB"
 msgid "Size: %s"
 msgstr "状態: %s"
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr "ストレージボリュームのスナップショットを取得します"
 
@@ -2966,7 +2968,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr "一部のコンテナで %s が失敗しました"
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr "取得元:"
 
@@ -2979,7 +2981,7 @@ msgstr "コンテナを起動します"
 msgid "Starting %s"
 msgstr "%s を起動中"
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr "状態: %s"
@@ -3006,17 +3008,17 @@ msgstr "コンテナの停止に失敗しました!"
 msgid "Stopping the container failed: %s"
 msgstr "コンテナの停止に失敗しました: %s"
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr "ストレージプール %s を作成しました"
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr "ストレージプール %s を削除しました"
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr "ストレージプール %s はメンバ %s 上でペンディング状態です"
@@ -3025,21 +3027,21 @@ msgstr "ストレージプール %s はメンバ %s 上でペンディング状
 msgid "Storage pool name"
 msgstr "ストレージプール名"
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr "ストレージボリューム %s を作成しました"
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr "ストレージボリューム %s を削除しました"
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr "ストレージボリュームのコピーが成功しました!"
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr "ストレージボリュームの移動が成功しました!"
 
@@ -3065,20 +3067,20 @@ msgstr "Swap (現在値)"
 msgid "Swap (peak)"
 msgstr "Swap (ピーク)"
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr "現在のプロジェクトを切り替えます"
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr "デフォルトのリモートを切り替えます"
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3140,12 +3142,12 @@ msgstr "プロファイルのデバイスが存在しません"
 msgid "The source LXD instance is not clustered"
 msgstr "移動元の LXD インスタンスはクラスタに属していません"
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr "指定したデバイスが存在しません"
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr "指定したデバイスはネットワークとマッチしません"
 
@@ -3163,7 +3165,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr "コンテナを強制停止するまでの時間"
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr "タイムスタンプ:"
 
@@ -3188,7 +3190,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 "--target オプションは、コピー先のリモートサーバがクラスタに属していなければな"
@@ -3204,7 +3206,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr "イメージを転送中: %s"
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)"
 
@@ -3212,7 +3214,7 @@ msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpu
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)"
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)。"
 
@@ -3221,7 +3223,7 @@ msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpu
 msgid "Transferring container: %s"
 msgstr "コンテナを転送中: %s"
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr "イメージを転送中: %s"
@@ -3244,16 +3246,16 @@ msgstr "タイプ: ephemeral"
 msgid "Type: persistent"
 msgstr "タイプ: persistent"
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3267,7 +3269,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr "テンポラリファイルを作成できません: %v"
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr "未知のカラム名の短縮形です '%c' ('%s' 中)"
@@ -3289,27 +3291,27 @@ msgstr "コンテナデバイスの設定を削除します"
 msgid "Unset container or server configuration keys"
 msgstr "コンテナもしくはサーバの設定を削除します"
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr "ネットワークの設定を削除します"
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr "プロファイルの設定を削除します"
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr "プロジェクトの設定を削除します"
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr "ストレージプールの設定を削除します"
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr "ストレージボリュームの設定を削除します"
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr "アップロード日時: %s"
@@ -3330,7 +3332,7 @@ msgstr "アップロード日時: %s"
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr "ユーザが削除操作を中断しました"
 
@@ -3380,8 +3382,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr "コンテナの稼動状態のスナップショットを取得するかどうか"
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3401,15 +3403,15 @@ msgstr "--target オプションを使うときはコピー先のコンテナ名
 msgid "You must specify a source container name"
 msgstr "コピー元のコンテナ名を指定してください"
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3417,39 +3419,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr "alias"
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3461,15 +3463,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3477,47 +3479,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr "create [<remote>:]<project>"
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr "現在値"
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3534,51 +3536,51 @@ msgstr ""
 "delete [<remote>:]<container>[/<snapshot>] [[<remote>:]<container>[/"
 "<snapshot>]...]"
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr "delete [<remote>:]<image> [[<remote>:]<image>...]"
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr "delete [<remote>:]<project>"
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr "説明"
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3586,11 +3588,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr "無効"
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr "ドライバ"
 
@@ -3598,7 +3600,7 @@ msgstr "ドライバ"
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3606,27 +3608,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3635,11 +3637,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr "restore [<remote>:]<container> <snapshot>"
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr "有効"
 
@@ -3665,7 +3667,7 @@ msgstr ""
 "export [<remote>:]<container> [target] [--container-only] [--optimized-"
 "storage]"
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3677,23 +3679,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr "get [<remote>:]<project> <key>"
 
@@ -3701,15 +3703,15 @@ msgstr "get [<remote>:]<project> <key>"
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3719,19 +3721,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr "ストレージ情報"
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3748,20 +3750,20 @@ msgstr "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3773,15 +3775,15 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
@@ -3789,7 +3791,7 @@ msgstr ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    \"list\" コマンドを \"list -c ns46S\" で上書きします。"
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
@@ -3797,7 +3799,7 @@ msgstr ""
 "lxc alias remove my-list\n"
 "    \"my-list\" というエイリアスを削除します。"
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3871,7 +3873,7 @@ msgstr ""
 "   /etc/hosts ファイルを、コンテナ \"foo\" 内 (の /etc/hosts) にコピーしま"
 "す。"
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3915,7 +3917,7 @@ msgstr "lxc init ubuntu:16.04 u1"
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr "lxc launch ubuntu:16.04 u1"
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3979,7 +3981,7 @@ msgstr ""
 "lxc move <container>/<old snapshot name> <container>/<new snapshot name>\n"
 "    スナップショットをリネームします。"
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
@@ -3987,7 +3989,7 @@ msgstr ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    上記のオペレーション UUID の詳細を表示します"
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -4008,7 +4010,7 @@ msgstr ""
 "lxc profile assign foo ''\n"
 "    \"foo\" からすべてのプロファイルを削除します。"
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
@@ -4016,7 +4018,7 @@ msgstr ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    profile.yaml の内容でプロファイルを更新します"
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -4054,7 +4056,7 @@ msgstr ""
 "lxc restore u1 snap0\n"
 "    スナップショットからリストアします。"
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
@@ -4062,7 +4064,7 @@ msgstr ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    pool.yaml の内容でストレージプールを更新します。"
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 msgid ""
 "lxc storage volume edit [<remote>:]<pool> <volume> < volume.yaml\n"
 "    Update a storage volume using the content of pool.yaml."
@@ -4070,7 +4072,7 @@ msgstr ""
 "lxc storage volume edit [<remote>:]<pool> <volume> < volume.yaml\n"
 "    pool.yaml の内容でストレージボリュームを更新します。"
 
-#: lxc/storage_volume.go:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -4100,7 +4102,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4112,23 +4114,23 @@ msgstr ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr "名前"
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr "network"
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr "ok (y/n)?"
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr "operation"
 
@@ -4144,11 +4146,11 @@ msgstr "pause [<remote>:]<container> [[<remote>:]<container>...]"
 msgid "please use `lxc profile`"
 msgstr "`lxc profile` コマンドを使ってください"
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr "profile"
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -4180,27 +4182,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr "remote"
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr "remove <alias>"
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4208,19 +4210,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4228,15 +4230,15 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
@@ -4244,11 +4246,11 @@ msgstr ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr "rename [<remote>:]<project> <new-name>"
 
@@ -4260,7 +4262,7 @@ msgstr "restart [<remote>:]<container> [[<remote>:]<container>...]"
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr "restore [<remote>:]<container> <snapshot>"
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr "restore [<remote>:]<pool> <volume> <snapshot>"
 
@@ -4269,26 +4271,26 @@ msgstr "restore [<remote>:]<pool> <volume> <snapshot>"
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
@@ -4298,7 +4300,7 @@ msgstr "set [<remote>:]<project> <key> <value>"
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr "set [<remote>:]<project> <key> <value>"
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4306,7 +4308,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4314,35 +4316,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr "show [<remote>:]<pool> <volume>[/<snapshot>]"
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4355,11 +4357,11 @@ msgstr "restore [<remote>:]<container> <snapshot>"
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr "使用量"
 
@@ -4379,15 +4381,15 @@ msgstr "ステートレス"
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr "stop [<remote>:]<container> [[<remote>:]<container>...]"
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr "switch <remote>"
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr "switch [<remote>:] <project>"
 
@@ -4396,15 +4398,15 @@ msgstr "switch [<remote>:] <project>"
 msgid "taken at %s"
 msgstr "%s に取得しました"
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr "総容量"
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4416,23 +4418,23 @@ msgstr "サーバに接続できません"
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr "unset [<remote>:]<project> <key>"
 
@@ -4440,7 +4442,7 @@ msgstr "unset [<remote>:]<project> <key>"
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr "ストレージを使用中の"
 
@@ -4448,16 +4450,16 @@ msgstr "ストレージを使用中の"
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr "volume"
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 3f3e8cd8e7..1d70296c0e 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 082646fc24..83b5fb691a 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-07-27 17:08-0400\n"
+        "POT-Creation-Date: 2019-08-08 13:58-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"
@@ -16,7 +16,7 @@ msgstr  "Project-Id-Version: lxd\n"
         "Content-Type: text/plain; charset=CHARSET\n"
         "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid   "### This is a yaml representation of a storage pool.\n"
         "### Any line starting with a '#' will be ignored.\n"
         "###\n"
@@ -32,7 +32,7 @@ msgid   "### This is a yaml representation of a storage pool.\n"
         "###   zfs.pool_name: default"
 msgstr  ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid   "### This is a yaml representation of a storage volume.\n"
         "### Any line starting with a '# will be ignored.\n"
         "###\n"
@@ -88,7 +88,7 @@ msgid   "### This is a yaml representation of the container metadata.\n"
         "###     properties: {}"
 msgstr  ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid   "### This is a yaml representation of the image properties.\n"
         "### Any line starting with a '# will be ignored.\n"
         "###\n"
@@ -97,7 +97,7 @@ msgid   "### This is a yaml representation of the image properties.\n"
         "###  description: My custom image"
 msgstr  ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid   "### This is a yaml representation of the network.\n"
         "### Any line starting with a '# will be ignored.\n"
         "###\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:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid   "### This is a yaml representation of the project.\n"
         "### Any line starting with a '# will be ignored.\n"
         "###\n"
@@ -157,7 +157,7 @@ msgstr  ""
 msgid   "%d (id: %d, online: %v)"
 msgstr  ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid   "%s (%d more)"
 msgstr  ""
@@ -177,7 +177,7 @@ msgstr  ""
 msgid   "'%s' isn't a supported file type"
 msgstr  ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid   "(none)"
 msgstr  ""
 
@@ -212,27 +212,27 @@ msgstr  ""
 msgid   "--target cannot be used with containers"
 msgstr  ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid   "ALIAS"
 msgstr  ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid   "ALIASES"
 msgstr  ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid   "ARCH"
 msgstr  ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid   "ARCHITECTURE"
 msgstr  ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid   "AUTH TYPE"
 msgstr  ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid   "Accept certificate"
 msgstr  ""
 
@@ -244,19 +244,19 @@ msgstr  ""
 msgid   "Add devices to containers or profiles"
 msgstr  ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid   "Add new aliases"
 msgstr  ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid   "Add new remote servers"
 msgstr  ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid   "Add new trusted clients"
 msgstr  ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid   "Add profiles to containers"
 msgstr  ""
 
@@ -265,30 +265,30 @@ msgstr  ""
 msgid   "Address: %s"
 msgstr  ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid   "Admin password for %s: "
 msgstr  ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid   "Alias %s already exists"
 msgstr  ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid   "Alias %s doesn't exist"
 msgstr  ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid   "Alias name missing"
 msgstr  ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid   "Aliases:"
 msgstr  ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid   "Architecture: %s"
 msgstr  ""
@@ -298,27 +298,27 @@ msgstr  ""
 msgid   "Architecture: %v"
 msgstr  ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid   "Assign sets of profiles to containers"
 msgstr  ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid   "Attach network interfaces to containers"
 msgstr  ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid   "Attach network interfaces to profiles"
 msgstr  ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid   "Attach new network interfaces to containers"
 msgstr  ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid   "Attach new storage volumes to containers"
 msgstr  ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid   "Attach new storage volumes to profiles"
 msgstr  ""
 
@@ -333,7 +333,7 @@ msgid   "Attach to container consoles\n"
         "as well as retrieve past log entries from it."
 msgstr  ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid   "Authentication type '%s' not supported by server"
 msgstr  ""
@@ -343,12 +343,12 @@ msgstr  ""
 msgid   "Auto negotiation: %v"
 msgstr  ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid   "Auto update: %s"
 msgstr  ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid   "BASE IMAGE"
 msgstr  ""
 
@@ -356,17 +356,17 @@ msgstr  ""
 msgid   "Backup exported successfully!"
 msgstr  ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid   "Bad key/value pair: %s"
 msgstr  ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176 lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid   "Bad key=value pair: %s"
 msgstr  ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid   "Bad property: %s"
 msgstr  ""
@@ -385,19 +385,19 @@ msgstr  ""
 msgid   "Brand: %v"
 msgstr  ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid   "Bytes received"
 msgstr  ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid   "Bytes sent"
 msgstr  ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid   "CANCELABLE"
 msgstr  ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid   "COMMON NAME"
 msgstr  ""
 
@@ -419,11 +419,11 @@ msgstr  ""
 msgid   "CPUs (%s):"
 msgstr  ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid   "CREATED"
 msgstr  ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid   "CREATED AT"
 msgstr  ""
 
@@ -432,7 +432,7 @@ msgstr  ""
 msgid   "CUDA Version: %v"
 msgstr  ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid   "Cached: %s"
 msgstr  ""
@@ -445,7 +445,7 @@ msgstr  ""
 msgid   "Can't override configuration or profiles in local rename"
 msgstr  ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid   "Can't provide a name for the target image"
 msgstr  ""
 
@@ -453,16 +453,16 @@ msgstr  ""
 msgid   "Can't pull a directory without --recursive"
 msgstr  ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid   "Can't read from stdin: %s"
 msgstr  ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid   "Can't remove the default remote"
 msgstr  ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid   "Can't specify column L when not clustered"
 msgstr  ""
 
@@ -483,7 +483,7 @@ msgstr  ""
 msgid   "Can't unset key '%s', it's not currently set"
 msgstr  ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid   "Candid domain to use"
 msgstr  ""
 
@@ -497,12 +497,12 @@ msgstr  ""
 msgid   "Card: %s (%s)"
 msgstr  ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid   "Certificate fingerprint: %s"
 msgstr  ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid   "Client certificate stored at server: "
 msgstr  ""
 
@@ -511,15 +511,15 @@ 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:259 lxc/network.go:674 lxc/network.go:732 lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594 lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306 lxc/storage_volume.go:466 lxc/storage_volume.go:543 lxc/storage_volume.go:785 lxc/storage_volume.go:982 lxc/storage_volume.go:1151 lxc/storage_volume.go:1181 lxc/storage_volume.go:1287 lxc/storage_volume.go:1366 lxc/storage_volume.go:1459
+#: 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
 msgid   "Cluster member name"
 msgstr  ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid   "Clustering enabled"
 msgstr  ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid   "Columns"
 msgstr  ""
 
@@ -538,7 +538,7 @@ msgstr  ""
 msgid   "Config key/value to apply to the new container"
 msgstr  ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304 lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid   "Config parsing error: %s"
 msgstr  ""
@@ -578,7 +578,7 @@ msgstr  ""
 msgid   "Copy a stateful container stateless"
 msgstr  ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid   "Copy aliases from source"
 msgstr  ""
 
@@ -586,11 +586,11 @@ msgstr  ""
 msgid   "Copy containers within or in between LXD instances"
 msgstr  ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid   "Copy images between servers"
 msgstr  ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid   "Copy images between servers\n"
         "\n"
         "The auto-update flag instructs the server to keep this image up to date.\n"
@@ -601,11 +601,11 @@ msgstr  ""
 msgid   "Copy profile inherited devices and override configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid   "Copy profiles"
 msgstr  ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid   "Copy storage volumes"
 msgstr  ""
 
@@ -613,7 +613,7 @@ msgstr  ""
 msgid   "Copy the container without its snapshots"
 msgstr  ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid   "Copy the volume without its snapshots"
 msgstr  ""
 
@@ -621,12 +621,12 @@ msgstr  ""
 msgid   "Copy to a project different from the source"
 msgstr  ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid   "Copying the image: %s"
 msgstr  ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid   "Copying the storage volume: %s"
 msgstr  ""
@@ -640,11 +640,11 @@ msgstr  ""
 msgid   "Cores:"
 msgstr  ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid   "Could not create server cert dir"
 msgstr  ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid   "Create aliases for existing images"
 msgstr  ""
 
@@ -675,27 +675,27 @@ msgstr  ""
 msgid   "Create containers from images"
 msgstr  ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid   "Create new container file templates"
 msgstr  ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid   "Create new custom storage volumes"
 msgstr  ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid   "Create new networks"
 msgstr  ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid   "Create profiles"
 msgstr  ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid   "Create projects"
 msgstr  ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid   "Create storage pools"
 msgstr  ""
 
@@ -703,7 +703,7 @@ msgstr  ""
 msgid   "Create the container with no profiles applied"
 msgstr  ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid   "Created: %s"
 msgstr  ""
@@ -722,15 +722,15 @@ msgstr  ""
 msgid   "Current number of VFs: %d"
 msgstr  ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid   "DATABASE"
 msgstr  ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid   "DESCRIPTION"
 msgstr  ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid   "DRIVER"
 msgstr  ""
 
@@ -742,11 +742,11 @@ msgstr  ""
 msgid   "Define a compression algorithm: for image or none"
 msgstr  ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid   "Delete a background operation (will attempt to cancel)"
 msgstr  ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid   "Delete container file templates"
 msgstr  ""
 
@@ -758,51 +758,51 @@ msgstr  ""
 msgid   "Delete files in containers"
 msgstr  ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid   "Delete image aliases"
 msgstr  ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid   "Delete images"
 msgstr  ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid   "Delete networks"
 msgstr  ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid   "Delete profiles"
 msgstr  ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid   "Delete projects"
 msgstr  ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid   "Delete storage pools"
 msgstr  ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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: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:29 lxc/config_template.go:66 lxc/config_template.go:109 lxc/config_template.go:151 lxc/config_template.go:235 lxc/config_template.go:297 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: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:41 lxc/image.go:130 lxc/image.go:264 lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792 lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36 lxc/launch.go:23 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:1124 lxc/network.go:1186 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101 lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166 lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406 lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753 lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29 lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586 lxc/project.go:615 lxc/project.go:668 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:657 lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140 lxc/storage_volume.go:219 lxc/storage_volume.go:302 lxc/storage_volume.go:463 lxc/storage_volume.go:540 lxc/storage_volume.go:616 lxc/storage_volume.go:698 lxc/storage_volume.go:779 lxc/storage_volume.go:979 lxc/storage_volume.go:1068 lxc/storage_volume.go:1147 lxc/storage_volume.go:1178 lxc/storage_volume.go:1281 lxc/storage_volume.go:1357 lxc/storage_volume.go:1456 lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid   "Description"
 msgstr  ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid   "Detach network interfaces from containers"
 msgstr  ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid   "Detach network interfaces from profiles"
 msgstr  ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid   "Detach storage volumes from containers"
 msgstr  ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid   "Detach storage volumes from profiles"
 msgstr  ""
 
@@ -821,7 +821,7 @@ msgstr  ""
 msgid   "Device %s removed from %s"
 msgstr  ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid   "Device already exists: %s"
 msgstr  ""
@@ -835,7 +835,7 @@ msgstr  ""
 msgid   "Didn't get any affected image, container or snapshot from server"
 msgstr  ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid   "Directory import is not available on this platform"
 msgstr  ""
 
@@ -864,7 +864,7 @@ msgstr  ""
 msgid   "Disks:"
 msgstr  ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid   "Don't require user confirmation for using --force"
 msgstr  ""
 
@@ -877,15 +877,15 @@ msgstr  ""
 msgid   "Driver: %v (%v)"
 msgstr  ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid   "EPHEMERAL"
 msgstr  ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid   "EXPIRY DATE"
 msgstr  ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid   "Edit container file templates"
 msgstr  ""
 
@@ -901,40 +901,40 @@ msgstr  ""
 msgid   "Edit files in containers"
 msgstr  ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid   "Edit image properties"
 msgstr  ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid   "Edit network configurations as YAML"
 msgstr  ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid   "Edit profile configurations as YAML"
 msgstr  ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid   "Edit project configurations as YAML"
 msgstr  ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid   "Edit storage pool configurations as YAML"
 msgstr  ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid   "Edit storage volume configurations as YAML"
 msgstr  ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid   "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr  ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid   "Enable clustering on a single non-clustered LXD instance"
 msgstr  ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid   "Error updating template file: %s"
 msgstr  ""
@@ -979,20 +979,20 @@ msgid   "Execute commands in containers\n"
         "Mode defaults to non-interactive, interactive mode is selected if both stdin AND stdout are terminals (stderr is ignored)."
 msgstr  ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid   "Expires: %s"
 msgstr  ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid   "Expires: never"
 msgstr  ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid   "Export and download images"
 msgstr  ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid   "Export and download images\n"
         "\n"
         "The output target is optional and defaults to the working directory."
@@ -1011,16 +1011,16 @@ msgstr  ""
 msgid   "Exporting the backup: %s"
 msgstr  ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid   "Exporting the image: %s"
 msgstr  ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid   "FILENAME"
 msgstr  ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942 lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939 lxc/image_alias.go:225
 msgid   "FINGERPRINT"
 msgstr  ""
 
@@ -1028,7 +1028,7 @@ msgstr  ""
 msgid   "Failed to connect to cluster member"
 msgstr  ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid   "Failed to create alias %s"
 msgstr  ""
@@ -1037,7 +1037,7 @@ msgstr  ""
 msgid   "Failed to get the new container name"
 msgstr  ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid   "Failed to remove alias %s"
 msgstr  ""
@@ -1047,15 +1047,15 @@ msgstr  ""
 msgid   "Failed to walk path for %s: %s"
 msgstr  ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid   "Fast mode (same as --columns=nsacPt)"
 msgstr  ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid   "Filtering isn't supported yet"
 msgstr  ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid   "Fingerprint: %s"
 msgstr  ""
@@ -1064,7 +1064,7 @@ msgstr  ""
 msgid   "Force pseudo-terminal allocation"
 msgstr  ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid   "Forcefully removing a server from the cluster should only be done as a last\n"
         "resort.\n"
@@ -1099,7 +1099,7 @@ 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/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583 lxc/remote.go:456
+#: 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
 msgid   "Format (csv|json|table|yaml)"
 msgstr  ""
 
@@ -1130,11 +1130,11 @@ msgstr  ""
 msgid   "Generate manpages for all commands"
 msgstr  ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid   "Generating a client certificate. This may take a minute..."
 msgstr  ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid   "Get runtime information on networks"
 msgstr  ""
 
@@ -1146,23 +1146,23 @@ msgstr  ""
 msgid   "Get values for container or server configuration keys"
 msgstr  ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid   "Get values for network configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid   "Get values for profile configuration keys"
 msgstr  ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid   "Get values for project configuration keys"
 msgstr  ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid   "Get values for storage pool configuration keys"
 msgstr  ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid   "Get values for storage volume configuration keys"
 msgstr  ""
 
@@ -1174,7 +1174,7 @@ msgstr  ""
 msgid   "Group ID to run the command as (default 0)"
 msgstr  ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid   "HOSTNAME"
 msgstr  ""
 
@@ -1182,7 +1182,7 @@ msgstr  ""
 msgid   "Hugepages:\n"
 msgstr  ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid   "ID"
 msgstr  ""
 
@@ -1196,23 +1196,23 @@ msgstr  ""
 msgid   "ID: %s"
 msgstr  ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid   "IMAGES"
 msgstr  ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid   "IP ADDRESS"
 msgstr  ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid   "IPV4"
 msgstr  ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid   "IPV6"
 msgstr  ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid   "ISSUE DATE"
 msgstr  ""
 
@@ -1228,33 +1228,33 @@ msgstr  ""
 msgid   "Ignore the container state"
 msgstr  ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid   "Image already up to date."
 msgstr  ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid   "Image copied successfully!"
 msgstr  ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid   "Image exported successfully!"
 msgstr  ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid   "Image identifier missing"
 msgstr  ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid   "Image identifier missing: %s"
 msgstr  ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid   "Image imported with fingerprint: %s"
 msgstr  ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid   "Image refreshed successfully!"
 msgstr  ""
 
@@ -1266,13 +1266,13 @@ msgstr  ""
 msgid   "Import container backups"
 msgstr  ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid   "Import image into the image store\n"
         "\n"
         "Directory import is only available on Linux and must be performed as root."
 msgstr  ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid   "Import images into the image store"
 msgstr  ""
 
@@ -1289,7 +1289,7 @@ msgstr  ""
 msgid   "Instance type"
 msgstr  ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid   "Invalid URL scheme \"%s\" in \"%s\""
 msgstr  ""
@@ -1298,32 +1298,32 @@ msgstr  ""
 msgid   "Invalid certificate"
 msgstr  ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid   "Invalid config key '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid   "Invalid config key column format (too many fields): '%s'"
 msgstr  ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661 lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid   "Invalid format %q"
 msgstr  ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid   "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid   "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid   "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr  ""
@@ -1337,7 +1337,7 @@ msgstr  ""
 msgid   "Invalid path %s"
 msgstr  ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid   "Invalid protocol: %s"
 msgstr  ""
@@ -1352,19 +1352,19 @@ msgstr  ""
 msgid   "Invalid target %s"
 msgstr  ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid   "Ips:"
 msgstr  ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid   "Keep the image up to date after initial copy"
 msgstr  ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid   "LAST USED AT"
 msgstr  ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166 lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162 lxc/storage_volume.go:1122
 msgid   "LOCATION"
 msgstr  ""
 
@@ -1372,16 +1372,16 @@ msgstr  ""
 msgid   "LXD - Command line client"
 msgstr  ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid   "LXD server isn't part of a cluster"
 msgstr  ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid   "Last used: %s"
 msgstr  ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid   "Last used: never"
 msgstr  ""
 
@@ -1395,11 +1395,11 @@ msgstr  ""
 msgid   "Link speed: %dMbit/s (%s duplex)"
 msgstr  ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid   "List DHCP leases"
 msgstr  ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid   "List aliases"
 msgstr  ""
 
@@ -1407,15 +1407,15 @@ msgstr  ""
 msgid   "List all the cluster members"
 msgstr  ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid   "List available networks"
 msgstr  ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid   "List available storage pools"
 msgstr  ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid   "List background operations"
 msgstr  ""
 
@@ -1427,11 +1427,11 @@ msgstr  ""
 msgid   "List container file templates"
 msgstr  ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid   "List containers"
 msgstr  ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid   "List containers\n"
         "\n"
         "Default column layout: ns46tS\n"
@@ -1492,21 +1492,21 @@ msgid   "List containers\n"
         "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr  ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid   "List image aliases"
 msgstr  ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid   "List image aliases\n"
         "\n"
         "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr  ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid   "List images"
 msgstr  ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid   "List images\n"
         "\n"
         "Filters may be of the <key>=<value> form for property based filtering,\n"
@@ -1531,7 +1531,7 @@ msgid   "List images\n"
         "    u - Upload date"
 msgstr  ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid   "List profiles"
 msgstr  ""
 
@@ -1539,19 +1539,19 @@ msgstr  ""
 msgid   "List projects"
 msgstr  ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid   "List storage volumes"
 msgstr  ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid   "List the available remotes"
 msgstr  ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid   "List trusted clients"
 msgstr  ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid   "List, show and delete background operations"
 msgstr  ""
 
@@ -1564,29 +1564,29 @@ msgstr  ""
 msgid   "Log:"
 msgstr  ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid   "MAC ADDRESS"
 msgstr  ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid   "MAC address: %s"
 msgstr  ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid   "MANAGED"
 msgstr  ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid   "MESSAGE"
 msgstr  ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid   "MTU: %d"
 msgstr  ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid   "Make image public"
 msgstr  ""
 
@@ -1594,15 +1594,15 @@ msgstr  ""
 msgid   "Make the image public"
 msgstr  ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid   "Manage and attach containers to networks"
 msgstr  ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid   "Manage cluster members"
 msgstr  ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid   "Manage command aliases"
 msgstr  ""
 
@@ -1614,7 +1614,7 @@ msgstr  ""
 msgid   "Manage container devices"
 msgstr  ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid   "Manage container file templates"
 msgstr  ""
 
@@ -1626,15 +1626,15 @@ msgstr  ""
 msgid   "Manage files in containers"
 msgstr  ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid   "Manage image aliases"
 msgstr  ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid   "Manage images"
 msgstr  ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid   "Manage images\n"
         "\n"
         "In LXD containers are created from images. Those images were themselves\n"
@@ -1652,33 +1652,33 @@ msgid   "Manage images\n"
         "hash or alias name (if one is set)."
 msgstr  ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid   "Manage profiles"
 msgstr  ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid   "Manage projects"
 msgstr  ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid   "Manage storage pools and volumes"
 msgstr  ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid   "Manage storage volumes"
 msgstr  ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid   "Manage storage volumes\n"
         "\n"
         "Unless specified through a prefix, all volume operations affect \"custom\" (user created) volumes."
 msgstr  ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid   "Manage the list of remote servers"
 msgstr  ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid   "Manage trusted clients"
 msgstr  ""
 
@@ -1687,12 +1687,12 @@ msgstr  ""
 msgid   "Maximum number of VFs: %d"
 msgstr  ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid   "Member %s removed"
 msgstr  ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid   "Member %s renamed to %s"
 msgstr  ""
@@ -1725,11 +1725,11 @@ msgstr  ""
 msgid   "Minimum level for log messages"
 msgstr  ""
 
-#: lxc/config_metadata.go:101 lxc/config_metadata.go:199 lxc/config_template.go:90 lxc/config_template.go:133 lxc/config_template.go:175 lxc/config_template.go:259 lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid   "Missing container name"
 msgstr  ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid   "Missing container.name name"
 msgstr  ""
 
@@ -1737,27 +1737,27 @@ msgstr  ""
 msgid   "Missing name"
 msgstr  ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402 lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755 lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083 lxc/network.go:1150
+#: 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
 msgid   "Missing network name"
 msgstr  ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414 lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164 lxc/storage_volume.go:243 lxc/storage_volume.go:488 lxc/storage_volume.go:564 lxc/storage_volume.go:640 lxc/storage_volume.go:722 lxc/storage_volume.go:821 lxc/storage_volume.go:1004 lxc/storage_volume.go:1092 lxc/storage_volume.go:1203 lxc/storage_volume.go:1308 lxc/storage_volume.go:1388 lxc/storage_volume.go:1510 lxc/storage_volume.go:1581
+#: 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
 msgid   "Missing pool name"
 msgstr  ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554 lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid   "Missing profile name"
 msgstr  ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358 lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid   "Missing project name"
 msgstr  ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid   "Missing source profile name"
 msgstr  ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid   "Missing source volume name"
 msgstr  ""
 
@@ -1785,7 +1785,7 @@ msgid   "Monitor a local or remote LXD server\n"
         "By default the monitor will listen to all message types."
 msgstr  ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660 lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659 lxc/storage_volume.go:740
 msgid   "More than one device matches, specify the device name"
 msgstr  ""
 
@@ -1797,7 +1797,7 @@ msgstr  ""
 msgid   "Move containers within or in between LXD instances"
 msgstr  ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid   "Move storage volumes between pools"
 msgstr  ""
 
@@ -1805,12 +1805,12 @@ msgstr  ""
 msgid   "Move the container without its snapshots"
 msgstr  ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid   "Moving the storage volume: %s"
 msgstr  ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid   "Must run as root to import from directory"
 msgstr  ""
 
@@ -1818,7 +1818,7 @@ msgstr  ""
 msgid   "Must supply container name for: "
 msgstr  ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621 lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559 lxc/storage_volume.go:1119
+#: 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
 msgid   "NAME"
 msgstr  ""
 
@@ -1830,7 +1830,7 @@ msgstr  ""
 msgid   "NICs:"
 msgstr  ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425 lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426 lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid   "NO"
 msgstr  ""
 
@@ -1852,7 +1852,7 @@ msgstr  ""
 msgid   "NVRM Version: %v"
 msgstr  ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid   "Name: %s"
 msgstr  ""
@@ -1862,22 +1862,22 @@ msgstr  ""
 msgid   "Name: %v"
 msgstr  ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid   "Network %s created"
 msgstr  ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid   "Network %s deleted"
 msgstr  ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid   "Network %s pending on member %s"
 msgstr  ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid   "Network %s renamed to %s"
 msgstr  ""
@@ -1886,7 +1886,7 @@ msgstr  ""
 msgid   "Network name"
 msgstr  ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid   "Network usage:"
 msgstr  ""
 
@@ -1894,7 +1894,7 @@ msgstr  ""
 msgid   "New alias to define at target"
 msgstr  ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid   "New aliases to add to the image"
 msgstr  ""
 
@@ -1902,19 +1902,19 @@ msgstr  ""
 msgid   "New key/value to apply to a specific device"
 msgstr  ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid   "No device found for this network"
 msgstr  ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid   "No device found for this storage volume"
 msgstr  ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid   "No storage pool for source volume specified"
 msgstr  ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid   "No storage pool for target volume specified"
 msgstr  ""
 
@@ -1928,27 +1928,27 @@ msgstr  ""
 msgid   "Node %d:\n"
 msgstr  ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid   "Only \"custom\" volumes can be attached to containers"
 msgstr  ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid   "Only \"custom\" volumes can be snapshotted"
 msgstr  ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid   "Only https URLs are supported for simplestreams"
 msgstr  ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid   "Only https:// is supported for remote image import"
 msgstr  ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid   "Only managed networks can be modified"
 msgstr  ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid   "Operation %s deleted"
 msgstr  ""
@@ -1966,35 +1966,35 @@ msgstr  ""
 msgid   "PCI address: %v"
 msgstr  ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid   "PERSISTENT"
 msgstr  ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid   "PID"
 msgstr  ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid   "PROCESSES"
 msgstr  ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid   "PROFILES"
 msgstr  ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid   "PROTOCOL"
 msgstr  ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid   "PUBLIC"
 msgstr  ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid   "Packets received"
 msgstr  ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid   "Packets sent"
 msgstr  ""
 
@@ -2029,11 +2029,11 @@ msgstr  ""
 msgid   "Ports:"
 msgstr  ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304 lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config.go:271 lxc/config.go:344 lxc/config_metadata.go:144 lxc/config_template.go:202 lxc/image.go:406
 msgid   "Press enter to start the editor again"
 msgstr  ""
 
@@ -2068,32 +2068,32 @@ msgstr  ""
 msgid   "Product: %v (%v)"
 msgstr  ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid   "Profile %s added to %s"
 msgstr  ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid   "Profile %s created"
 msgstr  ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid   "Profile %s deleted"
 msgstr  ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid   "Profile %s isn't currently applied to %s"
 msgstr  ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid   "Profile %s removed from %s"
 msgstr  ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid   "Profile %s renamed to %s"
 msgstr  ""
@@ -2106,7 +2106,7 @@ msgstr  ""
 msgid   "Profile to apply to the target container"
 msgstr  ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid   "Profiles %s applied to %s"
 msgstr  ""
@@ -2116,30 +2116,30 @@ msgstr  ""
 msgid   "Profiles: %s"
 msgstr  ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid   "Project %s created"
 msgstr  ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid   "Project %s deleted"
 msgstr  ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid   "Project %s renamed to %s"
 msgstr  ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid   "Properties:"
 msgstr  ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid   "Public image server"
 msgstr  ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid   "Public: %s"
 msgstr  ""
@@ -2180,7 +2180,7 @@ msgstr  ""
 msgid   "Recursively transfer files"
 msgstr  ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid   "Refresh images"
 msgstr  ""
 
@@ -2189,32 +2189,32 @@ msgstr  ""
 msgid   "Refreshing container: %s"
 msgstr  ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid   "Refreshing the image: %s"
 msgstr  ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid   "Remote %s already exists"
 msgstr  ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700 lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658 lxc/remote.go:696
 #, c-format
 msgid   "Remote %s doesn't exist"
 msgstr  ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid   "Remote %s exists as <%s>"
 msgstr  ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid   "Remote %s is static and cannot be modified"
 msgstr  ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid   "Remote admin password"
 msgstr  ""
 
@@ -2237,11 +2237,11 @@ msgstr  ""
 msgid   "Remove %s (yes/no): "
 msgstr  ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid   "Remove a member from the cluster"
 msgstr  ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid   "Remove aliases"
 msgstr  ""
 
@@ -2249,23 +2249,23 @@ msgstr  ""
 msgid   "Remove container devices"
 msgstr  ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid   "Remove profiles from containers"
 msgstr  ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid   "Remove remotes"
 msgstr  ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid   "Remove trusted clients"
 msgstr  ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid   "Rename a cluster member"
 msgstr  ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249 lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243 lxc/image_alias.go:244
 msgid   "Rename aliases"
 msgstr  ""
 
@@ -2273,31 +2273,31 @@ msgstr  ""
 msgid   "Rename containers and snapshots"
 msgstr  ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid   "Rename networks"
 msgstr  ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid   "Rename profiles"
 msgstr  ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid   "Rename projects"
 msgstr  ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid   "Rename remotes"
 msgstr  ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid   "Rename storage volumes"
 msgstr  ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid   "Rename storage volumes and storage volume snapshots"
 msgstr  ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid   "Renamed storage volume from \"%s\" to \"%s\""
 msgstr  ""
@@ -2335,7 +2335,7 @@ msgid   "Restore containers from snapshots\n"
         "If --stateful is passed, then the running state will be restored too."
 msgstr  ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid   "Restore storage volume snapshots"
 msgstr  ""
 
@@ -2352,15 +2352,15 @@ msgstr  ""
 msgid   "Run command against all containers"
 msgstr  ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid   "SIZE"
 msgstr  ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid   "SNAPSHOTS"
 msgstr  ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid   "SOURCE"
 msgstr  ""
 
@@ -2368,19 +2368,19 @@ msgstr  ""
 msgid   "SR-IOV information:"
 msgstr  ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid   "STATE"
 msgstr  ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid   "STATIC"
 msgstr  ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid   "STATUS"
 msgstr  ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid   "STORAGE POOL"
 msgstr  ""
 
@@ -2388,19 +2388,19 @@ msgstr  ""
 msgid   "Send a raw query to LXD"
 msgstr  ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid   "Server authentication type (tls or candid)"
 msgstr  ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid   "Server certificate NACKed by user"
 msgstr  ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid   "Server doesn't trust us after authentication"
 msgstr  ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid   "Server protocol (lxd or simplestreams)"
 msgstr  ""
 
@@ -2431,62 +2431,62 @@ msgid   "Set container or server configuration keys\n"
         "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr  ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid   "Set network configuration keys"
 msgstr  ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 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:802
+#: lxc/profile.go:758
 msgid   "Set profile configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 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:525
+#: lxc/project.go:520
 msgid   "Set project configuration keys"
 msgstr  ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 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:587
+#: lxc/storage.go:579
 msgid   "Set storage pool configuration keys"
 msgstr  ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 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:1280
+#: lxc/storage_volume.go:1274
 msgid   "Set storage volume configuration keys"
 msgstr  ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 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:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid   "Set the URL for the remote"
 msgstr  ""
 
@@ -2522,15 +2522,15 @@ msgstr  ""
 msgid   "Show container or server information"
 msgstr  ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid   "Show content of container file templates"
 msgstr  ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid   "Show details of a cluster member"
 msgstr  ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid   "Show details on a background operation"
 msgstr  ""
 
@@ -2538,7 +2538,7 @@ msgstr  ""
 msgid   "Show full device configuration for containers or profiles"
 msgstr  ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid   "Show image properties"
 msgstr  ""
 
@@ -2550,27 +2550,27 @@ msgstr  ""
 msgid   "Show local and remote versions"
 msgstr  ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid   "Show network configurations"
 msgstr  ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid   "Show profile configurations"
 msgstr  ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid   "Show project options"
 msgstr  ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid   "Show storage pool configurations and resources"
 msgstr  ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid   "Show storage volum configurations"
 msgstr  ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid   "Show storage volume configurations"
 msgstr  ""
 
@@ -2578,7 +2578,7 @@ msgstr  ""
 msgid   "Show the container's last 100 log lines?"
 msgstr  ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid   "Show the default remote"
 msgstr  ""
 
@@ -2590,23 +2590,23 @@ msgstr  ""
 msgid   "Show the resources available to the server"
 msgstr  ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid   "Show the resources available to the storage pool"
 msgstr  ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid   "Show the used and free space in bytes"
 msgstr  ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid   "Show useful information about images"
 msgstr  ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid   "Show useful information about storage pools"
 msgstr  ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid   "Size: %.2fMB"
 msgstr  ""
@@ -2616,7 +2616,7 @@ msgstr  ""
 msgid   "Size: %s"
 msgstr  ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid   "Snapshot storage volumes"
 msgstr  ""
 
@@ -2634,7 +2634,7 @@ msgstr  ""
 msgid   "Some containers failed to %s"
 msgstr  ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid   "Source:"
 msgstr  ""
 
@@ -2647,7 +2647,7 @@ msgstr  ""
 msgid   "Starting %s"
 msgstr  ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid   "State: %s"
 msgstr  ""
@@ -2674,17 +2674,17 @@ msgstr  ""
 msgid   "Stopping the container failed: %s"
 msgstr  ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid   "Storage pool %s created"
 msgstr  ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid   "Storage pool %s deleted"
 msgstr  ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid   "Storage pool %s pending on member %s"
 msgstr  ""
@@ -2693,21 +2693,21 @@ msgstr  ""
 msgid   "Storage pool name"
 msgstr  ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid   "Storage volume %s created"
 msgstr  ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid   "Storage volume %s deleted"
 msgstr  ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid   "Storage volume copied successfully!"
 msgstr  ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid   "Storage volume moved successfully!"
 msgstr  ""
 
@@ -2733,19 +2733,19 @@ msgstr  ""
 msgid   "Swap (peak)"
 msgstr  ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid   "Switch the current project"
 msgstr  ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid   "Switch the default remote"
 msgstr  ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid   "TARGET"
 msgstr  ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160 lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156 lxc/storage_volume.go:1116
 msgid   "TYPE"
 msgstr  ""
 
@@ -2799,11 +2799,11 @@ msgstr  ""
 msgid   "The source LXD instance is not clustered"
 msgstr  ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674 lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673 lxc/storage_volume.go:754
 msgid   "The specified device doesn't exist"
 msgstr  ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid   "The specified device doesn't match the network"
 msgstr  ""
 
@@ -2819,7 +2819,7 @@ msgstr  ""
 msgid   "Time to wait for the container before killing it"
 msgstr  ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid   "Timestamps:"
 msgstr  ""
 
@@ -2839,7 +2839,7 @@ 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:761 lxc/storage.go:420
+#: 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
 msgid   "To use --target, the destination remote must be a cluster"
 msgstr  ""
 
@@ -2853,7 +2853,7 @@ msgstr  ""
 msgid   "Transceiver type: %s"
 msgstr  ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid   "Transfer mode, one of pull (default), push or relay"
 msgstr  ""
 
@@ -2861,7 +2861,7 @@ msgstr  ""
 msgid   "Transfer mode. One of pull (default), push or relay"
 msgstr  ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid   "Transfer mode. One of pull (default), push or relay."
 msgstr  ""
 
@@ -2870,7 +2870,7 @@ msgstr  ""
 msgid   "Transferring container: %s"
 msgstr  ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid   "Transferring image: %s"
 msgstr  ""
@@ -2893,15 +2893,15 @@ msgstr  ""
 msgid   "Type: persistent"
 msgstr  ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid   "UPLOAD DATE"
 msgstr  ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid   "URL"
 msgstr  ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568 lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565 lxc/storage_volume.go:1119
 msgid   "USED BY"
 msgstr  ""
 
@@ -2915,7 +2915,7 @@ msgstr  ""
 msgid   "Unable to create a temporary file: %v"
 msgstr  ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid   "Unknown column shorthand char '%c' in '%s'"
 msgstr  ""
@@ -2937,27 +2937,27 @@ msgstr  ""
 msgid   "Unset container or server configuration keys"
 msgstr  ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid   "Unset network configuration keys"
 msgstr  ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid   "Unset profile configuration keys"
 msgstr  ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid   "Unset project configuration keys"
 msgstr  ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid   "Unset storage pool configuration keys"
 msgstr  ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid   "Unset storage volume configuration keys"
 msgstr  ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid   "Uploaded: %s"
 msgstr  ""
@@ -2975,7 +2975,7 @@ msgstr  ""
 msgid   "User ID to run the command as (default 0)"
 msgstr  ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid   "User aborted delete operation"
 msgstr  ""
 
@@ -3019,7 +3019,7 @@ msgstr  ""
 msgid   "Whether or not to snapshot the container's running state"
 msgstr  ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427 lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428 lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid   "YES"
 msgstr  ""
 
@@ -3039,15 +3039,15 @@ msgstr  ""
 msgid   "You must specify a source container name"
 msgstr  ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid   "add <alias> <target>"
 msgstr  ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid   "add [<remote>:] <cert>"
 msgstr  ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid   "add [<remote>:]<container> <profile>"
 msgstr  ""
 
@@ -3055,35 +3055,35 @@ msgstr  ""
 msgid   "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr  ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid   "add [<remote>] <IP|FQDN|URL>"
 msgstr  ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid   "alias"
 msgstr  ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid   "assign [<remote>:]<container> <profiles>"
 msgstr  ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid   "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr  ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid   "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr  ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid   "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr  ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid   "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface name>]"
 msgstr  ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid   "cluster"
 msgstr  ""
 
@@ -3095,15 +3095,15 @@ msgstr  ""
 msgid   "console [<remote>:]<container>"
 msgstr  ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid   "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr  ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid   "copy [<remote>:]<image> <remote>:"
 msgstr  ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid   "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr  ""
 
@@ -3111,47 +3111,47 @@ msgstr  ""
 msgid   "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr  ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid   "create [<remote>:]<alias> <fingerprint>"
 msgstr  ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid   "create [<remote>:]<container> <template>"
 msgstr  ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid   "create [<remote>:]<network> [key=value...]"
 msgstr  ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid   "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr  ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid   "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr  ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid   "create [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid   "create [<remote>:]<project>"
 msgstr  ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid   "current"
 msgstr  ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid   "default"
 msgstr  ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid   "delete [<remote>:]<alias>"
 msgstr  ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid   "delete [<remote>:]<container> <template>"
 msgstr  ""
 
@@ -3163,51 +3163,51 @@ msgstr  ""
 msgid   "delete [<remote>:]<container>[/<snapshot>] [[<remote>:]<container>[/<snapshot>]...]"
 msgstr  ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid   "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr  ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid   "delete [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid   "delete [<remote>:]<operation>"
 msgstr  ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid   "delete [<remote>:]<pool>"
 msgstr  ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid   "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid   "delete [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid   "delete [<remote>:]<project>"
 msgstr  ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid   "description"
 msgstr  ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid   "detach [<remote>:]<network> <container> [<device name>]"
 msgstr  ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid   "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr  ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid   "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr  ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid   "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr  ""
 
@@ -3215,11 +3215,11 @@ msgstr  ""
 msgid   "device"
 msgstr  ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid   "disabled"
 msgstr  ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid   "driver"
 msgstr  ""
 
@@ -3227,7 +3227,7 @@ msgstr  ""
 msgid   "edit [<remote>:]<container>"
 msgstr  ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid   "edit [<remote>:]<container> <template>"
 msgstr  ""
 
@@ -3235,27 +3235,27 @@ msgstr  ""
 msgid   "edit [<remote>:]<container>/<path>"
 msgstr  ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid   "edit [<remote>:]<image>"
 msgstr  ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid   "edit [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid   "edit [<remote>:]<pool>"
 msgstr  ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid   "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid   "edit [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid   "edit [<remote>:]<project>"
 msgstr  ""
 
@@ -3263,11 +3263,11 @@ msgstr  ""
 msgid   "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr  ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid   "enable [<remote>:] <name>"
 msgstr  ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid   "enabled"
 msgstr  ""
 
@@ -3289,7 +3289,7 @@ msgstr  ""
 msgid   "export [<remote>:]<container> [target] [--container-only] [--optimized-storage]"
 msgstr  ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid   "export [<remote>:]<image> [<target>]"
 msgstr  ""
 
@@ -3301,23 +3301,23 @@ msgstr  ""
 msgid   "get [<remote>:]<container|profile> <device> <key>"
 msgstr  ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid   "get [<remote>:]<network> <key>"
 msgstr  ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid   "get [<remote>:]<pool> <key>"
 msgstr  ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid   "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr  ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid   "get [<remote>:]<profile> <key>"
 msgstr  ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid   "get [<remote>:]<project> <key>"
 msgstr  ""
 
@@ -3325,15 +3325,15 @@ msgstr  ""
 msgid   "get [<remote>:][<container>] <key>"
 msgstr  ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid   "get-default"
 msgstr  ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid   "image"
 msgstr  ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid   "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] [key=value...]"
 msgstr  ""
 
@@ -3341,19 +3341,19 @@ msgstr  ""
 msgid   "import [<remote>:] <backup file>"
 msgstr  ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid   "info"
 msgstr  ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid   "info [<remote>:]<image>"
 msgstr  ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid   "info [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid   "info [<remote>:]<pool>"
 msgstr  ""
 
@@ -3369,19 +3369,19 @@ msgstr  ""
 msgid   "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr  ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid   "list"
 msgstr  ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806 lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid   "list [<remote>:]"
 msgstr  ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid   "list [<remote>:] [<filter>...]"
 msgstr  ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid   "list [<remote>:] [<filters>...]"
 msgstr  ""
 
@@ -3393,25 +3393,25 @@ msgstr  ""
 msgid   "list [<remote>:]<container|profile>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid   "list [<remote>:]<pool>"
 msgstr  ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid   "list-leases [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid   "lxc alias add list \"list -c ns46S\"\n"
         "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr  ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid   "lxc alias remove my-list\n"
         "    Remove the \"my-list\" alias."
 msgstr  ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid   "lxc alias rename list my-list\n"
         "    Rename existing alias \"list\" to \"my-list\"."
 msgstr  ""
@@ -3452,7 +3452,7 @@ msgid   "lxc file push /etc/hosts foo/etc/hosts\n"
         "   To push /etc/hosts into the container \"foo\"."
 msgstr  ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid   "lxc image edit <image>\n"
         "    Launch a text editor to edit the properties\n"
         "\n"
@@ -3481,7 +3481,7 @@ msgstr  ""
 msgid   "lxc launch ubuntu:16.04 u1"
 msgstr  ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid   "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
         "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", \"IPV6\" and \"MAC\" columns.\n"
         "  \"BASE IMAGE\" and \"MAC\" are custom columns generated from container configuration keys.\n"
@@ -3512,12 +3512,12 @@ msgid   "lxc move [<remote>:]<source container> [<remote>:][<destination contain
         "    Rename a snapshot."
 msgstr  ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid   "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
         "    Show details on that operation UUID"
 msgstr  ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid   "lxc profile assign foo default,bar\n"
         "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
         "\n"
@@ -3528,12 +3528,12 @@ msgid   "lxc profile assign foo default,bar\n"
         "    Remove all profile from \"foo\""
 msgstr  ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid   "lxc profile edit <profile> < profile.yaml\n"
         "    Update a profile using the content of profile.yaml"
 msgstr  ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid   "lxc project edit <project> < project.yaml\n"
         "    Update a project using the content of project.yaml"
 msgstr  ""
@@ -3556,17 +3556,17 @@ msgid   "lxc snapshot u1 snap0\n"
         "    Restore the snapshot."
 msgstr  ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid   "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
         "    Update a storage pool using the content of pool.yaml."
 msgstr  ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 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 +3586,7 @@ msgstr  ""
 msgid   "monitor [<remote>:]"
 msgstr  ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid   "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr  ""
 
@@ -3594,23 +3594,23 @@ msgstr  ""
 msgid   "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/<snapshot>]]"
 msgstr  ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid   "name"
 msgstr  ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid   "network"
 msgstr  ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid   "no"
 msgstr  ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid   "ok (y/n)?"
 msgstr  ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid   "operation"
 msgstr  ""
 
@@ -3626,11 +3626,11 @@ msgstr  ""
 msgid   "please use `lxc profile`"
 msgstr  ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid   "profile"
 msgstr  ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid   "project"
 msgstr  ""
 
@@ -3650,27 +3650,27 @@ msgstr  ""
 msgid   "query [<remote>:]<API path>"
 msgstr  ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid   "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr  ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid   "remote"
 msgstr  ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid   "remove <alias>"
 msgstr  ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid   "remove <remote>"
 msgstr  ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid   "remove [<remote>:] <hostname|fingerprint>"
 msgstr  ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid   "remove [<remote>:]<container> <profile>"
 msgstr  ""
 
@@ -3678,19 +3678,19 @@ msgstr  ""
 msgid   "remove [<remote>:]<container|profile> <name>..."
 msgstr  ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid   "remove [<remote>:]<member>"
 msgstr  ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid   "rename <old alias> <new alias>"
 msgstr  ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid   "rename <remote> <new-name>"
 msgstr  ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid   "rename [<remote>:]<alias> <new-name>"
 msgstr  ""
 
@@ -3698,23 +3698,23 @@ msgstr  ""
 msgid   "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid   "rename [<remote>:]<member> <new-name>"
 msgstr  ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid   "rename [<remote>:]<network> <new-name>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid   "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new snapshot name>]"
 msgstr  ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid   "rename [<remote>:]<profile> <new-name>"
 msgstr  ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid   "rename [<remote>:]<project> <new-name>"
 msgstr  ""
 
@@ -3726,7 +3726,7 @@ msgstr  ""
 msgid   "restore [<remote>:]<container> <snapshot>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid   "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr  ""
 
@@ -3734,23 +3734,23 @@ msgstr  ""
 msgid   "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr  ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid   "set [<remote>:]<network> <key>=<value>..."
 msgstr  ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid   "set [<remote>:]<pool> <key> <value>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid   "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr  ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid   "set [<remote>:]<profile> <key><value>..."
 msgstr  ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid   "set [<remote>:]<project> <key>=<value>..."
 msgstr  ""
 
@@ -3758,7 +3758,7 @@ msgstr  ""
 msgid   "set [<remote>:][<container>] <key>=<value>..."
 msgstr  ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid   "set-url <remote> <URL>"
 msgstr  ""
 
@@ -3766,7 +3766,7 @@ msgstr  ""
 msgid   "show [<remote>:]<container>"
 msgstr  ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid   "show [<remote>:]<container> <template>"
 msgstr  ""
 
@@ -3774,35 +3774,35 @@ msgstr  ""
 msgid   "show [<remote>:]<container|profile>"
 msgstr  ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid   "show [<remote>:]<image>"
 msgstr  ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid   "show [<remote>:]<member>"
 msgstr  ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid   "show [<remote>:]<network>"
 msgstr  ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid   "show [<remote>:]<operation>"
 msgstr  ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid   "show [<remote>:]<pool>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid   "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr  ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid   "show [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid   "show [<remote>:]<project>"
 msgstr  ""
 
@@ -3814,11 +3814,11 @@ msgstr  ""
 msgid   "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr  ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid   "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr  ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid   "space used"
 msgstr  ""
 
@@ -3838,15 +3838,15 @@ msgstr  ""
 msgid   "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr  ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid   "storage"
 msgstr  ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid   "switch <remote>"
 msgstr  ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid   "switch [<remote>:] <project>"
 msgstr  ""
 
@@ -3855,15 +3855,15 @@ msgstr  ""
 msgid   "taken at %s"
 msgstr  ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid   "template"
 msgstr  ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid   "total space"
 msgstr  ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid   "trust"
 msgstr  ""
 
@@ -3875,23 +3875,23 @@ msgstr  ""
 msgid   "unset [<remote>:]<container|profile> <device> <key>"
 msgstr  ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid   "unset [<remote>:]<network> <key>"
 msgstr  ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid   "unset [<remote>:]<pool> <key>"
 msgstr  ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid   "unset [<remote>:]<pool> <volume> <key>"
 msgstr  ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid   "unset [<remote>:]<profile> <key>"
 msgstr  ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid   "unset [<remote>:]<project> <key>"
 msgstr  ""
 
@@ -3899,7 +3899,7 @@ msgstr  ""
 msgid   "unset [<remote>:][<container>] <key>"
 msgstr  ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid   "used by"
 msgstr  ""
 
@@ -3907,15 +3907,15 @@ msgstr  ""
 msgid   "version [<remote>:]"
 msgstr  ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid   "volume"
 msgstr  ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid   "y"
 msgstr  ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832 lxc/image.go:998
+#: lxc/cluster.go:273 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 437cd8d6c0..b118d6b175 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 4dd086eace..a300554581 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 3.5-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -49,7 +49,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -135,7 +135,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -151,7 +151,7 @@ msgstr ""
 "### Bijvoorbeeld:\n"
 "###  description: Mijn eigen image"
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -171,7 +171,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -214,7 +214,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (en nog %d)"
@@ -234,7 +234,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr "(geen)"
 
@@ -270,27 +270,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr "ARCHITECTUUR"
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr "ARCHITECTUUR"
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -302,19 +302,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -323,30 +323,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -356,27 +356,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -392,7 +392,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -402,12 +402,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -415,18 +415,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -445,19 +445,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -479,11 +479,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -492,7 +492,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -505,7 +505,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -513,16 +513,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -543,7 +543,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -557,12 +557,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -573,23 +573,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -609,7 +609,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -618,8 +618,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -651,7 +651,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -659,11 +659,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -675,11 +675,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -687,7 +687,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -695,12 +695,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -714,11 +714,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -750,27 +750,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -778,7 +778,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -797,16 +797,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -818,11 +818,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -834,99 +834,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -945,7 +945,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -959,7 +959,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -988,7 +988,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1001,15 +1001,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1025,40 +1025,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1109,20 +1109,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1142,17 +1142,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1160,7 +1160,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1169,7 +1169,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1179,15 +1179,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1196,7 +1196,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1236,8 +1236,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1268,11 +1271,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1284,23 +1287,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1312,7 +1315,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1320,7 +1323,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1334,23 +1337,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1368,33 +1371,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1406,14 +1409,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1430,7 +1433,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1439,33 +1442,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1480,7 +1482,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1495,20 +1497,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1516,16 +1518,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1539,11 +1541,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1551,15 +1553,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1571,11 +1573,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1640,22 +1642,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1681,7 +1683,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1689,19 +1691,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1714,29 +1716,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1744,15 +1746,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1764,7 +1766,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1776,15 +1778,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1803,23 +1805,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1827,11 +1829,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1840,12 +1842,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1879,13 +1881,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1895,40 +1897,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1957,8 +1959,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1970,7 +1972,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1978,12 +1980,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1991,9 +1993,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2005,8 +2007,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2028,7 +2030,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -2038,22 +2040,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2062,7 +2064,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2070,7 +2072,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2078,19 +2080,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2104,27 +2106,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2142,35 +2144,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2205,13 +2207,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2246,32 +2248,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2284,7 +2286,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2294,30 +2296,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2358,7 +2360,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2367,33 +2369,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2416,11 +2418,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2428,24 +2430,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2453,31 +2455,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2517,7 +2519,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2534,15 +2536,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2550,19 +2552,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2570,19 +2572,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2618,11 +2620,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2631,11 +2633,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2644,11 +2646,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2657,11 +2659,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2670,11 +2672,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2683,7 +2685,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2719,15 +2721,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2735,7 +2737,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2747,27 +2749,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2775,7 +2777,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2787,23 +2789,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2813,7 +2815,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2831,7 +2833,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2844,7 +2846,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2871,17 +2873,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2890,21 +2892,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2930,20 +2932,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3000,12 +3002,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -3021,7 +3023,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -3042,7 +3044,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3056,7 +3058,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3064,7 +3066,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3073,7 +3075,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3096,16 +3098,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3119,7 +3121,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3141,27 +3143,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3180,7 +3182,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3227,8 +3229,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3248,15 +3250,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3264,39 +3266,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3308,15 +3310,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3324,47 +3326,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3378,51 +3380,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3430,11 +3432,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3442,7 +3444,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3450,27 +3452,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3478,11 +3480,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3506,7 +3508,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3518,23 +3520,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3542,15 +3544,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3560,19 +3562,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3588,20 +3590,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3613,27 +3615,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3683,7 +3685,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3715,7 +3717,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3753,13 +3755,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3771,13 +3773,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3804,19 +3806,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3839,7 +3841,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3849,23 +3851,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3881,11 +3883,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3911,27 +3913,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3939,19 +3941,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3959,25 +3961,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3989,7 +3991,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3997,23 +3999,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4021,7 +4023,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4029,7 +4031,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4037,35 +4039,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4077,11 +4079,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4101,15 +4103,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4118,15 +4120,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4138,23 +4140,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4162,7 +4164,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4170,15 +4172,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 03751be260..8213c0d0a7 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 8f5d3d8bd3..99dcbd6030 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -20,7 +20,7 @@ msgstr ""
 "|| n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.2-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -37,7 +37,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -123,7 +123,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -133,7 +133,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -153,7 +153,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -214,7 +214,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -234,7 +234,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -270,27 +270,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -302,19 +302,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -323,30 +323,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -356,27 +356,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -392,7 +392,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -402,12 +402,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -415,18 +415,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -445,19 +445,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -479,11 +479,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -492,7 +492,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -505,7 +505,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -513,16 +513,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -543,7 +543,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -557,12 +557,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -573,23 +573,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -609,7 +609,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -618,8 +618,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -651,7 +651,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -659,11 +659,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -675,11 +675,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -687,7 +687,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -695,12 +695,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -714,11 +714,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -750,27 +750,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -778,7 +778,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -797,16 +797,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -818,11 +818,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -834,99 +834,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -945,7 +945,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -959,7 +959,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -988,7 +988,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1001,15 +1001,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -1025,40 +1025,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1109,20 +1109,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1142,17 +1142,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1160,7 +1160,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1169,7 +1169,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1179,15 +1179,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1196,7 +1196,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1236,8 +1236,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1268,11 +1271,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1284,23 +1287,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1312,7 +1315,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1320,7 +1323,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1334,23 +1337,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1368,33 +1371,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1406,14 +1409,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1430,7 +1433,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1439,33 +1442,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1480,7 +1482,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1495,20 +1497,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1516,16 +1518,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1539,11 +1541,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1551,15 +1553,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1571,11 +1573,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1640,22 +1642,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1681,7 +1683,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1689,19 +1691,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1714,29 +1716,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1744,15 +1746,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1764,7 +1766,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1776,15 +1778,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1803,23 +1805,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1827,11 +1829,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1840,12 +1842,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1879,13 +1881,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1895,40 +1897,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1957,8 +1959,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1970,7 +1972,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1978,12 +1980,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1991,9 +1993,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2005,8 +2007,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2028,7 +2030,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -2038,22 +2040,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2062,7 +2064,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2070,7 +2072,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2078,19 +2080,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2104,27 +2106,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2142,35 +2144,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2205,13 +2207,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2246,32 +2248,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2284,7 +2286,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2294,30 +2296,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2358,7 +2360,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2367,33 +2369,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2416,11 +2418,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2428,24 +2430,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2453,31 +2455,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2517,7 +2519,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2534,15 +2536,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2550,19 +2552,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2570,19 +2572,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2618,11 +2620,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2631,11 +2633,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2644,11 +2646,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2657,11 +2659,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2670,11 +2672,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2683,7 +2685,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2719,15 +2721,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2735,7 +2737,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2747,27 +2749,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2775,7 +2777,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2787,23 +2789,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2813,7 +2815,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2831,7 +2833,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2844,7 +2846,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2871,17 +2873,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2890,21 +2892,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2930,20 +2932,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3000,12 +3002,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -3021,7 +3023,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -3042,7 +3044,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3056,7 +3058,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3064,7 +3066,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3073,7 +3075,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3096,16 +3098,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3119,7 +3121,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3141,27 +3143,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3180,7 +3182,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3227,8 +3229,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3248,15 +3250,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3264,39 +3266,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3308,15 +3310,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3324,47 +3326,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3378,51 +3380,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3430,11 +3432,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3442,7 +3444,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3450,27 +3452,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3478,11 +3480,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3506,7 +3508,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3518,23 +3520,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3542,15 +3544,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3560,19 +3562,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3588,20 +3590,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3613,27 +3615,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3683,7 +3685,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3715,7 +3717,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3753,13 +3755,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3771,13 +3773,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3804,19 +3806,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3839,7 +3841,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3849,23 +3851,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3881,11 +3883,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3911,27 +3913,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3939,19 +3941,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3959,25 +3961,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3989,7 +3991,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3997,23 +3999,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4021,7 +4023,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4029,7 +4031,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4037,35 +4039,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4077,11 +4079,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4101,15 +4103,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4118,15 +4120,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4138,23 +4140,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4162,7 +4164,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4170,15 +4172,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 0d29116785..d45fefdff4 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-08 13:58-0400\n"
 "PO-Revision-Date: 2019-06-22 17:19+0000\n"
 "Last-Translator: Renato dos Santos <shazaum at gmail.com>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 3.7\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -50,7 +50,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -157,7 +157,7 @@ msgstr ""
 "###     template: template.tpl\n"
 "###     properties: {}"
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -173,7 +173,7 @@ msgstr ""
 "# # # um exemplo seria:\n"
 "# # # Descrição: Minha imagem personalizada"
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -209,7 +209,7 @@ msgstr ""
 "###\n"
 "### Note que o nome é exibido, porém não pode ser alterado."
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -284,7 +284,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (%d mais)"
@@ -304,7 +304,7 @@ 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:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr "(nenhum)"
 
@@ -342,27 +342,27 @@ msgstr "--refresh só pode ser usado com containers"
 msgid "--target cannot be used with containers"
 msgstr "--refresh só pode ser usado com containers"
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr "ALIASES"
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr "ARQUITETURA"
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr "ARQUITETURA"
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr "TIPO DE AUTENTICAÇÃO"
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 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:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr "Adicionar novo aliases"
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr "Adicionar novos servidores remoto"
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr "Adicionar novos clientes confiáveis"
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr "Adicionar perfis aos containers"
 
@@ -395,30 +395,30 @@ msgstr "Adicionar perfis aos containers"
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Senha de administrador para %s: "
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr "Alias %s já existe"
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr "Alias %s não existe"
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr "Nome do alias ausente"
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr "Aliases:"
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr "Arquitetura: %s"
@@ -428,27 +428,27 @@ msgstr "Arquitetura: %s"
 msgid "Architecture: %v"
 msgstr "Arquitetura: %v"
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr "Atribuir conjuntos de perfis aos containers"
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr "Anexar interfaces de rede aos containers"
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr "Anexar interfaces de rede aos perfis"
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr "Anexar uma nova interface de rede aos containers"
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr "Tipo de autenticação '%s' não suportada pelo servidor"
@@ -474,12 +474,12 @@ msgstr "Tipo de autenticação '%s' não suportada pelo servidor"
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr "Atualização automática: %s"
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr "IMAGEM BASE"
 
@@ -487,18 +487,18 @@ msgstr "IMAGEM BASE"
 msgid "Backup exported successfully!"
 msgstr "Backup exportado com sucesso!"
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 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:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr "par de chave=valor inválido %s"
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr "Propriedade ruim: %s"
@@ -517,19 +517,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr "Marca: %v"
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Bytes recebido"
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Bytes enviado"
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr "CANCELÁVEL"
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr "NOME COMUM"
 
@@ -551,11 +551,11 @@ msgstr "Utilização do CPU:"
 msgid "CPUs (%s):"
 msgstr "CPUs:"
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr "CRIADO"
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr "CRIADO EM"
 
@@ -564,7 +564,7 @@ msgstr "CRIADO EM"
 msgid "CUDA Version: %v"
 msgstr "Versão CUDA: %v"
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr "Em cache: %s"
@@ -578,7 +578,7 @@ msgstr "Em cache: %s"
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr "Não pode fornecer um nome para a imagem de destino"
 
@@ -586,16 +586,16 @@ msgstr "Não pode fornecer um nome para a imagem de destino"
 msgid "Can't pull a directory without --recursive"
 msgstr "Não pode pegar um diretório sem --recursive"
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr "Não é possível ler stdin: %s"
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr "Não é possível remover o default remoto"
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr "Não pode especificar a coluna L, quando não em cluster"
 
@@ -616,7 +616,7 @@ 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:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -630,12 +630,12 @@ msgstr "Cartão %d:"
 msgid "Card: %s (%s)"
 msgstr "Em cache: %s"
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr "Certificado fingerprint: %s"
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr "Certificado do cliente armazenado no servidor:"
 
@@ -646,23 +646,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr "Nome de membro do cluster"
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr "Clustering ativado"
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr "Colunas"
 
@@ -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:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -696,8 +696,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr "Erro de análise de configuração: %s"
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr "Aliases de cópia da fonte"
 
@@ -737,11 +737,11 @@ msgstr "Aliases de cópia da fonte"
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr "Copiar imagens entre servidores"
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -753,11 +753,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -765,7 +765,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -773,12 +773,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -792,11 +792,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr "Impossível criar diretório para certificado do servidor"
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -832,27 +832,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -860,7 +860,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -879,16 +879,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -900,11 +900,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -916,99 +916,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr "Apagar nomes alternativos da imagem"
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr "Desconectar interfaces de rede dos containers"
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr "Desconectar interfaces de rede dos perfis"
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr "Desconectar volumes de armazenamento dos containers"
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr "Desconectar volumes de armazenamento dos perfis"
 
@@ -1027,7 +1027,7 @@ msgstr "Dispositivo %s sobreposto em %s"
 msgid "Device %s removed from %s"
 msgstr "Dispositivo %s removido de %s"
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr "O dispositivo já existe: %s"
@@ -1041,7 +1041,7 @@ msgstr "Em cache: %s"
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr "A importação de diretório não está disponível nessa plataforma"
 
@@ -1072,7 +1072,7 @@ msgstr "Uso de disco:"
 msgid "Disks:"
 msgstr "Uso de disco:"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1085,15 +1085,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr "EFÊMERO"
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr "DATA DE VALIDADE"
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr "Editar templates de arquivo do container"
 
@@ -1109,41 +1109,41 @@ msgstr "Editar configurações do container ou do servidor como YAML"
 msgid "Edit files in containers"
 msgstr "Editar arquivos no container"
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr "Editar propriedades da imagem"
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr "Editar configurações de rede como YAML"
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 #, fuzzy
 msgid "Edit project configurations as YAML"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1194,20 +1194,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1227,17 +1227,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1245,7 +1245,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1254,7 +1254,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1264,15 +1264,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1281,7 +1281,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1321,8 +1321,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1353,11 +1356,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1369,24 +1372,24 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 #, fuzzy
 msgid "Get values for project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1398,7 +1401,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1406,7 +1409,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1420,23 +1423,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1454,33 +1457,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr "Imagem exportada com sucesso!"
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr "Falta o identificador da imagem"
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr "Falta o identificador da imagem: %s"
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1492,14 +1495,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1516,7 +1519,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1525,33 +1528,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1566,7 +1568,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1581,20 +1583,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1602,16 +1604,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1625,11 +1627,11 @@ msgstr "Arquitetura: %v"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1637,15 +1639,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1657,11 +1659,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1726,22 +1728,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1767,7 +1769,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1775,19 +1777,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1800,29 +1802,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1830,15 +1832,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1850,7 +1852,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1862,15 +1864,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1889,23 +1891,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1913,11 +1915,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1926,12 +1928,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1965,13 +1967,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1981,40 +1983,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -2043,8 +2045,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -2056,7 +2058,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -2064,12 +2066,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -2077,9 +2079,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2091,8 +2093,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2114,7 +2116,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -2124,22 +2126,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2148,7 +2150,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2156,7 +2158,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2164,19 +2166,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2190,27 +2192,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2228,35 +2230,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2291,13 +2293,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2332,32 +2334,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2370,7 +2372,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2380,30 +2382,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2444,7 +2446,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2453,33 +2455,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr "Editar arquivos no container"
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2502,11 +2504,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2514,24 +2516,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2539,31 +2541,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2603,7 +2605,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2620,15 +2622,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2636,19 +2638,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2656,19 +2658,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2704,11 +2706,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2717,11 +2719,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2730,12 +2732,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2744,11 +2746,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2757,11 +2759,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2770,7 +2772,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2806,15 +2808,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2822,7 +2824,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2834,27 +2836,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2862,7 +2864,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2874,23 +2876,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2900,7 +2902,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2918,7 +2920,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2931,7 +2933,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2958,17 +2960,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2977,21 +2979,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -3017,20 +3019,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3087,12 +3089,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -3108,7 +3110,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -3129,7 +3131,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3143,7 +3145,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3151,7 +3153,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3160,7 +3162,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3183,16 +3185,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3206,7 +3208,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3228,28 +3230,28 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3268,7 +3270,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3315,8 +3317,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3336,15 +3338,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3352,39 +3354,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3396,15 +3398,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3412,47 +3414,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3466,51 +3468,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3518,11 +3520,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3530,7 +3532,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3538,27 +3540,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3566,11 +3568,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3594,7 +3596,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3606,23 +3608,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3630,15 +3632,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3648,19 +3650,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3676,20 +3678,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3701,27 +3703,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3771,7 +3773,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3803,7 +3805,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3841,13 +3843,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3859,13 +3861,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3892,19 +3894,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3927,7 +3929,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3937,23 +3939,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3969,11 +3971,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3999,27 +4001,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4027,19 +4029,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4047,25 +4049,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4077,7 +4079,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -4085,23 +4087,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4109,7 +4111,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4117,7 +4119,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4125,35 +4127,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4165,11 +4167,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4189,15 +4191,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4206,15 +4208,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4226,23 +4228,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4250,7 +4252,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4258,16 +4260,16 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 a3d49b1d80..69e0f53709 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -20,7 +20,7 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.1-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
@@ -51,7 +51,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -145,7 +145,7 @@ msgstr ""
 "###\n"
 "### Обратите внимание, что имя отображается, но не может быть изменено"
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -161,7 +161,7 @@ msgstr ""
 "### Например:\n"
 "###  description: My custom image"
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -197,7 +197,7 @@ msgstr ""
 "###\n"
 "### Обратите внимание, что только конфигурация может быть изменена."
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 #, fuzzy
 msgid ""
 "### This is a yaml representation of the project.\n"
@@ -275,7 +275,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -295,7 +295,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr "(пусто)"
 
@@ -331,28 +331,28 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr "ПСЕВДОНИМ"
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 #, fuzzy
 msgid "ALIASES"
 msgstr "ПСЕВДОНИМ"
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr "ARCH"
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr "АРХИТЕКТУРА"
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr "Принять сертификат"
 
@@ -364,20 +364,20 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 #, fuzzy
 msgid "Add new aliases"
 msgstr "Псевдонимы:"
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -386,30 +386,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr "Пароль администратора для %s: "
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr "Псевдонимы:"
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr "Архитектура: %s"
@@ -419,27 +419,27 @@ msgstr "Архитектура: %s"
 msgid "Architecture: %v"
 msgstr "Архитектура: %s"
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -455,7 +455,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -465,12 +465,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr "Авто-обновление: %s"
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -478,18 +478,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -508,19 +508,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr "Получено байтов"
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr "Отправлено байтов"
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr "ОБЩЕЕ ИМЯ"
 
@@ -543,12 +543,12 @@ msgstr " Использование ЦП:"
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 #, fuzzy
 msgid "CREATED"
 msgstr "СОЗДАН"
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr "СОЗДАН"
 
@@ -557,7 +557,7 @@ msgstr "СОЗДАН"
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -578,16 +578,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr "Невозможно прочитать из стандартного ввода: %s"
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -608,7 +608,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -622,12 +622,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr "Сертификат клиента хранится на сервере: "
 
@@ -638,23 +638,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr "Столбцы"
 
@@ -674,7 +674,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -683,8 +683,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -716,7 +716,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr "Копировать псевдонимы из источника"
 
@@ -724,11 +724,11 @@ msgstr "Копировать псевдонимы из источника"
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -740,11 +740,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 #, fuzzy
 msgid "Copy storage volumes"
 msgstr "Копирование образа: %s"
@@ -753,7 +753,7 @@ msgstr "Копирование образа: %s"
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -761,12 +761,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, fuzzy, c-format
 msgid "Copying the storage volume: %s"
 msgstr "Копирование образа: %s"
@@ -780,11 +780,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr "Не удалось создать каталог сертификата сервера"
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -818,29 +818,29 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 #, fuzzy
 msgid "Create new container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 #, fuzzy
 msgid "Create new custom storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 #, fuzzy
 msgid "Create storage pools"
 msgstr "Копирование образа: %s"
@@ -850,7 +850,7 @@ msgstr "Копирование образа: %s"
 msgid "Create the container with no profiles applied"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -869,16 +869,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -890,11 +890,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 #, fuzzy
 msgid "Delete container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -908,100 +908,100 @@ msgstr "Невозможно добавить имя контейнера в с
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 #, fuzzy
 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: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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -1020,7 +1020,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -1034,7 +1034,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -1066,7 +1066,7 @@ msgstr " Использование диска:"
 msgid "Disks:"
 msgstr " Использование диска:"
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -1079,15 +1079,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 #, fuzzy
 msgid "Edit container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -1104,40 +1104,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, fuzzy, c-format
 msgid "Error updating template file: %s"
 msgstr "Копирование образа: %s"
@@ -1188,21 +1188,21 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 #, fuzzy
 msgid "Export and download images"
 msgstr "Копирование образа: %s"
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1224,17 +1224,17 @@ msgstr "Невозможно добавить имя контейнера в с
 msgid "Exporting the backup: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, fuzzy, c-format
 msgid "Exporting the image: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1242,7 +1242,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1251,7 +1251,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1261,15 +1261,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1278,7 +1278,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1318,8 +1318,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1350,11 +1353,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1366,23 +1369,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1394,7 +1397,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1402,7 +1405,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1416,23 +1419,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1451,33 +1454,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1490,14 +1493,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 #, fuzzy
 msgid "Import images into the image store"
 msgstr "Копирование образа: %s"
@@ -1515,7 +1518,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1524,33 +1527,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1565,7 +1567,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1580,20 +1582,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1601,16 +1603,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1624,11 +1626,11 @@ msgstr "Архитектура: %s"
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 #, fuzzy
 msgid "List aliases"
 msgstr "Псевдонимы:"
@@ -1637,15 +1639,15 @@ msgstr "Псевдонимы:"
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1658,11 +1660,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1727,22 +1729,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1768,7 +1770,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1776,20 +1778,20 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 #, fuzzy
 msgid "List storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1802,29 +1804,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1832,15 +1834,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1852,7 +1854,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 #, fuzzy
 msgid "Manage container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
@@ -1865,15 +1867,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1892,25 +1894,25 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 #, fuzzy
 msgid "Manage storage pools and volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 #, fuzzy
 msgid "Manage storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1918,11 +1920,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1931,12 +1933,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1972,14 +1974,14 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 #, fuzzy
 msgid "Missing container name"
 msgstr "Имя контейнера: %s"
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1989,41 +1991,41 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 #, fuzzy
 msgid "Missing project name"
 msgstr "Имя контейнера: %s"
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 #, fuzzy
 msgid "Missing source volume name"
 msgstr "Копирование образа: %s"
@@ -2053,8 +2055,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -2066,7 +2068,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 #, fuzzy
 msgid "Move storage volumes between pools"
 msgstr "Копирование образа: %s"
@@ -2075,12 +2077,12 @@ msgstr "Копирование образа: %s"
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, fuzzy, c-format
 msgid "Moving the storage volume: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -2088,9 +2090,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -2102,8 +2104,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -2125,7 +2127,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -2135,22 +2137,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2159,7 +2161,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 #, fuzzy
 msgid "Network usage:"
 msgstr " Использование сети:"
@@ -2168,7 +2170,7 @@ msgstr " Использование сети:"
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2176,20 +2178,20 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 #, fuzzy
 msgid "No device found for this storage volume"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2203,27 +2205,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2241,35 +2243,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2304,13 +2306,13 @@ msgstr "Авто-обновление: %s"
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2345,32 +2347,32 @@ msgstr "Невозможно добавить имя контейнера в с
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2383,7 +2385,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2393,30 +2395,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2457,7 +2459,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 #, fuzzy
 msgid "Refresh images"
 msgstr "Копирование образа: %s"
@@ -2467,33 +2469,33 @@ msgstr "Копирование образа: %s"
 msgid "Refreshing container: %s"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, fuzzy, c-format
 msgid "Refreshing the image: %s"
 msgstr "Копирование образа: %s"
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2516,11 +2518,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2529,24 +2531,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2555,33 +2557,33 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 #, fuzzy
 msgid "Rename storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 #, fuzzy
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr "Копирование образа: %s"
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2621,7 +2623,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 #, fuzzy
 msgid "Restore storage volume snapshots"
 msgstr "Копирование образа: %s"
@@ -2639,15 +2641,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2655,19 +2657,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2675,19 +2677,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2723,11 +2725,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2736,11 +2738,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2749,11 +2751,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2762,11 +2764,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2775,11 +2777,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2788,7 +2790,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2825,16 +2827,16 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 #, fuzzy
 msgid "Show content of container file templates"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2842,7 +2844,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2854,27 +2856,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2882,7 +2884,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2894,23 +2896,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2920,7 +2922,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr "Авто-обновление: %s"
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 #, fuzzy
 msgid "Snapshot storage volumes"
 msgstr "Копирование образа: %s"
@@ -2939,7 +2941,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2952,7 +2954,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, fuzzy, c-format
 msgid "State: %s"
 msgstr "Авто-обновление: %s"
@@ -2980,17 +2982,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2999,21 +3001,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -3040,20 +3042,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -3110,12 +3112,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -3152,7 +3154,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3166,7 +3168,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3174,7 +3176,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3183,7 +3185,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3206,16 +3208,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3229,7 +3231,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3251,27 +3253,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3290,7 +3292,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3337,8 +3339,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3358,15 +3360,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3374,40 +3376,40 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 #, fuzzy
 msgid "alias"
 msgstr "Псевдонимы:"
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3419,15 +3421,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3435,47 +3437,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3497,7 +3499,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 #, fuzzy
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -3505,19 +3507,19 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 #, fuzzy
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -3525,11 +3527,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 #, fuzzy
 msgid "delete [<remote>:]<project>"
 msgstr ""
@@ -3537,23 +3539,23 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3561,11 +3563,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3573,7 +3575,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3581,19 +3583,19 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 #, fuzzy
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -3601,11 +3603,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3617,11 +3619,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3649,7 +3651,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3661,15 +3663,15 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 #, fuzzy
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
@@ -3677,11 +3679,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 #, fuzzy
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
@@ -3693,15 +3695,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3711,19 +3713,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3743,20 +3745,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3768,27 +3770,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3838,7 +3840,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3870,7 +3872,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3908,13 +3910,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3926,13 +3928,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3959,19 +3961,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3994,7 +3996,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -4008,23 +4010,23 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -4044,11 +4046,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -4082,7 +4084,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -4090,23 +4092,23 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -4114,19 +4116,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -4138,15 +4140,15 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 #, fuzzy
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
@@ -4156,11 +4158,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4176,7 +4178,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 #, fuzzy
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
@@ -4192,7 +4194,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 #, fuzzy
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
@@ -4200,11 +4202,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 #, fuzzy
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
@@ -4212,7 +4214,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 #, fuzzy
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
@@ -4220,7 +4222,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4236,7 +4238,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -4244,7 +4246,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -4252,27 +4254,27 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 #, fuzzy
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
@@ -4280,11 +4282,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4300,7 +4302,7 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 #, fuzzy
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
@@ -4308,7 +4310,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4336,15 +4338,15 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4353,15 +4355,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4373,23 +4375,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
@@ -4401,7 +4403,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4409,17 +4411,17 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 #, fuzzy
 msgid "volume"
 msgstr "Столбцы"
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 f0d4baa63b..d6aa734a9d 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 9db33f16b1..a7ba6e10ba 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 cdae900d2d..f5819bfd88 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 a51311ac27..f38ef10e7d 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -33,7 +33,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -92,7 +92,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -102,7 +102,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -122,7 +122,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -165,7 +165,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -185,7 +185,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -221,27 +221,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -253,19 +253,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -274,30 +274,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -307,27 +307,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -343,7 +343,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -353,12 +353,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -366,18 +366,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -396,19 +396,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -430,11 +430,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -443,7 +443,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -464,16 +464,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -508,12 +508,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -524,23 +524,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -560,7 +560,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -569,8 +569,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -602,7 +602,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -610,11 +610,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -626,11 +626,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -646,12 +646,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -665,11 +665,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -701,27 +701,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -729,7 +729,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -748,16 +748,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -769,11 +769,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -785,99 +785,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -896,7 +896,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -910,7 +910,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -939,7 +939,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -952,15 +952,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -976,40 +976,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1060,20 +1060,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1093,17 +1093,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1111,7 +1111,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1120,7 +1120,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1130,15 +1130,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1147,7 +1147,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1187,8 +1187,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1219,11 +1222,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1235,23 +1238,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1263,7 +1266,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1271,7 +1274,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1285,23 +1288,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1319,33 +1322,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1357,14 +1360,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1381,7 +1384,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1390,33 +1393,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1431,7 +1433,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1446,20 +1448,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1467,16 +1469,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1490,11 +1492,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1502,15 +1504,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1522,11 +1524,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1591,22 +1593,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1632,7 +1634,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1640,19 +1642,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1665,29 +1667,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1695,15 +1697,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1715,7 +1717,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1727,15 +1729,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1754,23 +1756,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1778,11 +1780,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1791,12 +1793,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1830,13 +1832,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1846,40 +1848,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1908,8 +1910,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1921,7 +1923,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1929,12 +1931,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1942,9 +1944,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1956,8 +1958,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1979,7 +1981,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1989,22 +1991,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2013,7 +2015,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2021,7 +2023,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2029,19 +2031,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2055,27 +2057,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2093,35 +2095,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2156,13 +2158,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2197,32 +2199,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2235,7 +2237,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2245,30 +2247,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2309,7 +2311,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2318,33 +2320,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2367,11 +2369,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2379,24 +2381,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2404,31 +2406,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2468,7 +2470,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2485,15 +2487,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2501,19 +2503,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2521,19 +2523,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2569,11 +2571,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2582,11 +2584,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2595,11 +2597,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2608,11 +2610,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2621,11 +2623,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2634,7 +2636,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2670,15 +2672,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2686,7 +2688,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2698,27 +2700,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2726,7 +2728,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2738,23 +2740,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2764,7 +2766,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2782,7 +2784,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2795,7 +2797,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2822,17 +2824,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2841,21 +2843,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2881,20 +2883,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2951,12 +2953,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2972,7 +2974,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2993,7 +2995,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3007,7 +3009,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3015,7 +3017,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3024,7 +3026,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3047,16 +3049,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3070,7 +3072,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3092,27 +3094,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3131,7 +3133,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3178,8 +3180,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3199,15 +3201,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3215,39 +3217,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3259,15 +3261,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3275,47 +3277,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3329,51 +3331,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3381,11 +3383,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3393,7 +3395,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3401,27 +3403,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3429,11 +3431,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3457,7 +3459,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3469,23 +3471,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3493,15 +3495,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3511,19 +3513,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3539,20 +3541,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3564,27 +3566,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3634,7 +3636,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3666,7 +3668,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3704,13 +3706,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3722,13 +3724,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3755,19 +3757,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3790,7 +3792,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3800,23 +3802,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3832,11 +3834,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3862,27 +3864,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3890,19 +3892,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3910,25 +3912,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3940,7 +3942,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3948,23 +3950,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3972,7 +3974,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3980,7 +3982,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3988,35 +3990,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4028,11 +4030,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4052,15 +4054,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4069,15 +4071,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4089,23 +4091,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4113,7 +4115,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4121,15 +4123,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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 f16b732dbb..c38be06755 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-07-27 17:08-0400\n"
+"POT-Creation-Date: 2019-08-08 13:58-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/"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 3.2-dev\n"
 
-#: lxc/storage.go:225
+#: lxc/storage.go:224
 msgid ""
 "### This is a yaml representation of a storage pool.\n"
 "### Any line starting with a '#' will be ignored.\n"
@@ -36,7 +36,7 @@ msgid ""
 "###   zfs.pool_name: default"
 msgstr ""
 
-#: lxc/storage_volume.go:792
+#: lxc/storage_volume.go:791
 msgid ""
 "### This is a yaml representation of a storage volume.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -95,7 +95,7 @@ msgid ""
 "###     properties: {}"
 msgstr ""
 
-#: lxc/image.go:330
+#: lxc/image.go:327
 msgid ""
 "### This is a yaml representation of the image properties.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -105,7 +105,7 @@ msgid ""
 "###  description: My custom image"
 msgstr ""
 
-#: lxc/network.go:557
+#: lxc/network.go:554
 msgid ""
 "### This is a yaml representation of the network.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -125,7 +125,7 @@ msgid ""
 "### Note that only the configuration can be changed."
 msgstr ""
 
-#: lxc/profile.go:418
+#: lxc/profile.go:414
 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:226
+#: lxc/project.go:224
 msgid ""
 "### This is a yaml representation of the project.\n"
 "### Any line starting with a '# will be ignored.\n"
@@ -168,7 +168,7 @@ msgstr ""
 msgid "%d (id: %d, online: %v)"
 msgstr ""
 
-#: lxc/image.go:973
+#: lxc/image.go:970
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -188,7 +188,7 @@ msgstr ""
 msgid "'%s' isn't a supported file type"
 msgstr ""
 
-#: lxc/profile.go:225
+#: lxc/profile.go:221
 msgid "(none)"
 msgstr ""
 
@@ -224,27 +224,27 @@ msgstr ""
 msgid "--target cannot be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
+#: lxc/alias.go:123 lxc/image.go:936 lxc/image_alias.go:224
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:940
+#: lxc/image.go:937
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:945
+#: lxc/image.go:942
 msgid "ARCH"
 msgstr ""
 
-#: lxc/list.go:460
+#: lxc/list.go:418
 msgid "ARCHITECTURE"
 msgstr ""
 
-#: lxc/remote.go:512
+#: lxc/remote.go:507
 msgid "AUTH TYPE"
 msgstr ""
 
-#: lxc/remote.go:92
+#: lxc/remote.go:87
 msgid "Accept certificate"
 msgstr ""
 
@@ -256,19 +256,19 @@ msgstr ""
 msgid "Add devices to containers or profiles"
 msgstr ""
 
-#: lxc/alias.go:54 lxc/alias.go:55
+#: lxc/alias.go:51 lxc/alias.go:52
 msgid "Add new aliases"
 msgstr ""
 
-#: lxc/remote.go:87 lxc/remote.go:88
+#: lxc/remote.go:82 lxc/remote.go:83
 msgid "Add new remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:58 lxc/config_trust.go:59
+#: lxc/config_trust.go:55 lxc/config_trust.go:56
 msgid "Add new trusted clients"
 msgstr ""
 
-#: lxc/profile.go:102 lxc/profile.go:103
+#: lxc/profile.go:98 lxc/profile.go:99
 msgid "Add profiles to containers"
 msgstr ""
 
@@ -277,30 +277,30 @@ msgstr ""
 msgid "Address: %s"
 msgstr ""
 
-#: lxc/remote.go:361
+#: lxc/remote.go:356
 #, c-format
 msgid "Admin password for %s: "
 msgstr ""
 
-#: lxc/alias.go:78 lxc/alias.go:176
+#: lxc/alias.go:75 lxc/alias.go:170
 #, c-format
 msgid "Alias %s already exists"
 msgstr ""
 
-#: lxc/alias.go:170 lxc/alias.go:221
+#: lxc/alias.go:164 lxc/alias.go:215
 #, c-format
 msgid "Alias %s doesn't exist"
 msgstr ""
 
-#: lxc/image_alias.go:83 lxc/image_alias.go:130 lxc/image_alias.go:274
+#: lxc/image_alias.go:80 lxc/image_alias.go:127 lxc/image_alias.go:268
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:870
+#: lxc/image.go:867
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:842 lxc/info.go:430
+#: lxc/image.go:839 lxc/info.go:430
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -310,27 +310,27 @@ msgstr ""
 msgid "Architecture: %v"
 msgstr ""
 
-#: lxc/profile.go:165 lxc/profile.go:166
+#: lxc/profile.go:161 lxc/profile.go:162
 msgid "Assign sets of profiles to containers"
 msgstr ""
 
-#: lxc/network.go:109
+#: lxc/network.go:106
 msgid "Attach network interfaces to containers"
 msgstr ""
 
-#: lxc/network.go:182 lxc/network.go:183
+#: lxc/network.go:179 lxc/network.go:180
 msgid "Attach network interfaces to profiles"
 msgstr ""
 
-#: lxc/network.go:110
+#: lxc/network.go:107
 msgid "Attach new network interfaces to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:139 lxc/storage_volume.go:140
+#: lxc/storage_volume.go:138 lxc/storage_volume.go:139
 msgid "Attach new storage volumes to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:218 lxc/storage_volume.go:219
+#: lxc/storage_volume.go:217 lxc/storage_volume.go:218
 msgid "Attach new storage volumes to profiles"
 msgstr ""
 
@@ -346,7 +346,7 @@ msgid ""
 "as well as retrieve past log entries from it."
 msgstr ""
 
-#: lxc/remote.go:344
+#: lxc/remote.go:339
 #, c-format
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
@@ -356,12 +356,12 @@ msgstr ""
 msgid "Auto negotiation: %v"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:877
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:472 lxc/list.go:473
+#: lxc/list.go:430 lxc/list.go:431
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -369,18 +369,18 @@ msgstr ""
 msgid "Backup exported successfully!"
 msgstr ""
 
-#: lxc/network.go:289
+#: lxc/network.go:286
 #, c-format
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:123 lxc/init.go:149 lxc/project.go:121 lxc/publish.go:176
-#: lxc/storage.go:123 lxc/storage_volume.go:505
+#: 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
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:687
+#: lxc/image.go:684
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
@@ -399,19 +399,19 @@ msgstr ""
 msgid "Brand: %v"
 msgstr ""
 
-#: lxc/info.go:523 lxc/network.go:788
+#: lxc/info.go:523 lxc/network.go:785
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:524 lxc/network.go:789
+#: lxc/info.go:524 lxc/network.go:786
 msgid "Bytes sent"
 msgstr ""
 
-#: lxc/operation.go:163
+#: lxc/operation.go:159
 msgid "CANCELABLE"
 msgstr ""
 
-#: lxc/config_trust.go:175
+#: lxc/config_trust.go:171
 msgid "COMMON NAME"
 msgstr ""
 
@@ -433,11 +433,11 @@ msgstr ""
 msgid "CPUs (%s):"
 msgstr ""
 
-#: lxc/operation.go:164
+#: lxc/operation.go:160
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:461
+#: lxc/list.go:419
 msgid "CREATED AT"
 msgstr ""
 
@@ -446,7 +446,7 @@ msgstr ""
 msgid "CUDA Version: %v"
 msgstr ""
 
-#: lxc/image.go:879
+#: lxc/image.go:876
 #, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -459,7 +459,7 @@ msgstr ""
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
-#: lxc/image.go:174
+#: lxc/image.go:171
 msgid "Can't provide a name for the target image"
 msgstr ""
 
@@ -467,16 +467,16 @@ msgstr ""
 msgid "Can't pull a directory without --recursive"
 msgstr ""
 
-#: lxc/utils.go:232 lxc/utils.go:252
+#: lxc/utils.go:236 lxc/utils.go:256
 #, c-format
 msgid "Can't read from stdin: %s"
 msgstr ""
 
-#: lxc/remote.go:658
+#: lxc/remote.go:616
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:479
+#: lxc/list.go:437
 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:491
+#: lxc/list.go:449
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -497,7 +497,7 @@ msgstr ""
 msgid "Can't unset key '%s', it's not currently set"
 msgstr ""
 
-#: lxc/remote.go:97
+#: lxc/remote.go:92
 msgid "Candid domain to use"
 msgstr ""
 
@@ -511,12 +511,12 @@ msgstr ""
 msgid "Card: %s (%s)"
 msgstr ""
 
-#: lxc/remote.go:256
+#: lxc/remote.go:251
 #, c-format
 msgid "Certificate fingerprint: %s"
 msgstr ""
 
-#: lxc/remote.go:400
+#: lxc/remote.go:395
 msgid "Client certificate stored at server: "
 msgstr ""
 
@@ -527,23 +527,23 @@ 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:259 lxc/network.go:674 lxc/network.go:732
-#: lxc/network.go:1060 lxc/network.go:1127 lxc/network.go:1189
-#: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:594
-#: lxc/storage.go:661 lxc/storage.go:744 lxc/storage_volume.go:306
-#: lxc/storage_volume.go:466 lxc/storage_volume.go:543
-#: lxc/storage_volume.go:785 lxc/storage_volume.go:982
-#: lxc/storage_volume.go:1151 lxc/storage_volume.go:1181
-#: lxc/storage_volume.go:1287 lxc/storage_volume.go:1366
-#: lxc/storage_volume.go:1459
+#: 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
 msgid "Cluster member name"
 msgstr ""
 
-#: lxc/cluster.go:405
+#: lxc/cluster.go:399
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:930 lxc/list.go:117
+#: lxc/image.go:927 lxc/list.go:112
 msgid "Columns"
 msgstr ""
 
@@ -563,7 +563,7 @@ msgstr ""
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
-#: lxc/project.go:88
+#: lxc/project.go:86
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
@@ -572,8 +572,8 @@ 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:408 lxc/network.go:642 lxc/profile.go:500 lxc/project.go:304
-#: lxc/storage.go:303 lxc/storage_volume.go:918 lxc/storage_volume.go:948
+#: 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
 #, c-format
 msgid "Config parsing error: %s"
 msgstr ""
@@ -605,7 +605,7 @@ msgstr ""
 msgid "Copy a stateful container stateless"
 msgstr ""
 
-#: lxc/image.go:137
+#: lxc/image.go:134
 msgid "Copy aliases from source"
 msgstr ""
 
@@ -613,11 +613,11 @@ msgstr ""
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/image.go:129
+#: lxc/image.go:126
 msgid "Copy images between servers"
 msgstr ""
 
-#: lxc/image.go:130
+#: lxc/image.go:127
 msgid ""
 "Copy images between servers\n"
 "\n"
@@ -629,11 +629,11 @@ msgstr ""
 msgid "Copy profile inherited devices and override configuration keys"
 msgstr ""
 
-#: lxc/profile.go:245 lxc/profile.go:246
+#: lxc/profile.go:241 lxc/profile.go:242
 msgid "Copy profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:301 lxc/storage_volume.go:302
+#: lxc/storage_volume.go:300 lxc/storage_volume.go:301
 msgid "Copy storage volumes"
 msgstr ""
 
@@ -641,7 +641,7 @@ msgstr ""
 msgid "Copy the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:307
+#: lxc/storage_volume.go:306
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
@@ -649,12 +649,12 @@ msgstr ""
 msgid "Copy to a project different from the source"
 msgstr ""
 
-#: lxc/image.go:217
+#: lxc/image.go:214
 #, c-format
 msgid "Copying the image: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:362
+#: lxc/storage_volume.go:361
 #, c-format
 msgid "Copying the storage volume: %s"
 msgstr ""
@@ -668,11 +668,11 @@ msgstr ""
 msgid "Cores:"
 msgstr ""
 
-#: lxc/remote.go:271
+#: lxc/remote.go:266
 msgid "Could not create server cert dir"
 msgstr ""
 
-#: lxc/image_alias.go:58 lxc/image_alias.go:59
+#: lxc/image_alias.go:55 lxc/image_alias.go:56
 msgid "Create aliases for existing images"
 msgstr ""
 
@@ -704,27 +704,27 @@ msgstr ""
 msgid "Create containers from images"
 msgstr ""
 
-#: lxc/config_template.go:65 lxc/config_template.go:66
+#: lxc/config_template.go:63 lxc/config_template.go:64
 msgid "Create new container file templates"
 msgstr ""
 
-#: lxc/storage_volume.go:462 lxc/storage_volume.go:463
+#: lxc/storage_volume.go:461 lxc/storage_volume.go:462
 msgid "Create new custom storage volumes"
 msgstr ""
 
-#: lxc/network.go:255 lxc/network.go:256
+#: lxc/network.go:252 lxc/network.go:253
 msgid "Create new networks"
 msgstr ""
 
-#: lxc/profile.go:301 lxc/profile.go:302
+#: lxc/profile.go:297 lxc/profile.go:298
 msgid "Create profiles"
 msgstr ""
 
-#: lxc/project.go:85 lxc/project.go:86
+#: lxc/project.go:83 lxc/project.go:84
 msgid "Create projects"
 msgstr ""
 
-#: lxc/storage.go:88 lxc/storage.go:89
+#: lxc/storage.go:87 lxc/storage.go:88
 msgid "Create storage pools"
 msgstr ""
 
@@ -732,7 +732,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:848 lxc/info.go:432
+#: lxc/image.go:845 lxc/info.go:432
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -751,16 +751,16 @@ msgstr ""
 msgid "Current number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:128
+#: lxc/cluster.go:125
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:944 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:1120
+#: 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
 msgid "DESCRIPTION"
 msgstr ""
 
-#: lxc/storage.go:561
+#: lxc/storage.go:558
 msgid "DRIVER"
 msgstr ""
 
@@ -772,11 +772,11 @@ msgstr ""
 msgid "Define a compression algorithm: for image or none"
 msgstr ""
 
-#: lxc/operation.go:53 lxc/operation.go:54
+#: lxc/operation.go:50 lxc/operation.go:51
 msgid "Delete a background operation (will attempt to cancel)"
 msgstr ""
 
-#: lxc/config_template.go:108 lxc/config_template.go:109
+#: lxc/config_template.go:106 lxc/config_template.go:107
 msgid "Delete container file templates"
 msgstr ""
 
@@ -788,99 +788,99 @@ msgstr ""
 msgid "Delete files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:105 lxc/image_alias.go:106
+#: lxc/image_alias.go:102 lxc/image_alias.go:103
 msgid "Delete image aliases"
 msgstr ""
 
-#: lxc/image.go:263 lxc/image.go:264
+#: lxc/image.go:260 lxc/image.go:261
 msgid "Delete images"
 msgstr ""
 
-#: lxc/network.go:327 lxc/network.go:328
+#: lxc/network.go:324 lxc/network.go:325
 msgid "Delete networks"
 msgstr ""
 
-#: lxc/profile.go:355 lxc/profile.go:356
+#: lxc/profile.go:351 lxc/profile.go:352
 msgid "Delete profiles"
 msgstr ""
 
-#: lxc/project.go:150 lxc/project.go:151
+#: lxc/project.go:148 lxc/project.go:149
 msgid "Delete projects"
 msgstr ""
 
-#: lxc/storage.go:162 lxc/storage.go:163
+#: lxc/storage.go:161 lxc/storage.go:162
 msgid "Delete storage pools"
 msgstr ""
 
-#: lxc/storage_volume.go:539 lxc/storage_volume.go:540
+#: lxc/storage_volume.go:538 lxc/storage_volume.go:539
 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:31
+#: 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:29
-#: lxc/config_template.go:66 lxc/config_template.go:109
-#: lxc/config_template.go:151 lxc/config_template.go:235
-#: lxc/config_template.go:297 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/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:41 lxc/image.go:130 lxc/image.go:264
-#: lxc/image.go:315 lxc/image.go:438 lxc/image.go:578 lxc/image.go:792
-#: lxc/image.go:906 lxc/image.go:1236 lxc/image.go:1313 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:28 lxc/info.go:32 lxc/init.go:36
-#: lxc/launch.go:23 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:1124 lxc/network.go:1186
-#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101
-#: lxc/operation.go:186 lxc/profile.go:31 lxc/profile.go:103 lxc/profile.go:166
-#: lxc/profile.go:246 lxc/profile.go:302 lxc/profile.go:356 lxc/profile.go:406
-#: lxc/profile.go:530 lxc/profile.go:579 lxc/profile.go:677 lxc/profile.go:753
-#: lxc/profile.go:803 lxc/profile.go:862 lxc/profile.go:916 lxc/project.go:29
-#: lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334
-#: lxc/project.go:382 lxc/project.go:471 lxc/project.go:526 lxc/project.go:586
-#: lxc/project.go:615 lxc/project.go:668 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:657
-#: lxc/storage.go:741 lxc/storage_volume.go:33 lxc/storage_volume.go:140
-#: lxc/storage_volume.go:219 lxc/storage_volume.go:302
-#: lxc/storage_volume.go:463 lxc/storage_volume.go:540
-#: lxc/storage_volume.go:616 lxc/storage_volume.go:698
-#: lxc/storage_volume.go:779 lxc/storage_volume.go:979
-#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1147
-#: lxc/storage_volume.go:1178 lxc/storage_volume.go:1281
-#: lxc/storage_volume.go:1357 lxc/storage_volume.go:1456
-#: lxc/storage_volume.go:1487 lxc/storage_volume.go:1558 lxc/version.go:22
+#: 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
 msgid "Description"
 msgstr ""
 
-#: lxc/network.go:377 lxc/network.go:378
+#: lxc/network.go:374 lxc/network.go:375
 msgid "Detach network interfaces from containers"
 msgstr ""
 
-#: lxc/network.go:462 lxc/network.go:463
+#: lxc/network.go:459 lxc/network.go:460
 msgid "Detach network interfaces from profiles"
 msgstr ""
 
-#: lxc/storage_volume.go:615 lxc/storage_volume.go:616
+#: lxc/storage_volume.go:614 lxc/storage_volume.go:615
 msgid "Detach storage volumes from containers"
 msgstr ""
 
-#: lxc/storage_volume.go:697 lxc/storage_volume.go:698
+#: lxc/storage_volume.go:696 lxc/storage_volume.go:697
 msgid "Detach storage volumes from profiles"
 msgstr ""
 
@@ -899,7 +899,7 @@ msgstr ""
 msgid "Device %s removed from %s"
 msgstr ""
 
-#: lxc/utils.go:139 lxc/utils.go:163
+#: lxc/utils.go:143 lxc/utils.go:167
 #, c-format
 msgid "Device already exists: %s"
 msgstr ""
@@ -913,7 +913,7 @@ msgstr ""
 msgid "Didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:593
+#: lxc/image.go:590
 msgid "Directory import is not available on this platform"
 msgstr ""
 
@@ -942,7 +942,7 @@ msgstr ""
 msgid "Disks:"
 msgstr ""
 
-#: lxc/cluster.go:254
+#: lxc/cluster.go:248
 msgid "Don't require user confirmation for using --force"
 msgstr ""
 
@@ -955,15 +955,15 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:665
+#: lxc/list.go:623
 msgid "EPHEMERAL"
 msgstr ""
 
-#: lxc/config_trust.go:177
+#: lxc/config_trust.go:173
 msgid "EXPIRY DATE"
 msgstr ""
 
-#: lxc/config_template.go:150 lxc/config_template.go:151
+#: lxc/config_template.go:148 lxc/config_template.go:149
 msgid "Edit container file templates"
 msgstr ""
 
@@ -979,40 +979,40 @@ msgstr ""
 msgid "Edit files in containers"
 msgstr ""
 
-#: lxc/image.go:314 lxc/image.go:315
+#: lxc/image.go:311 lxc/image.go:312
 msgid "Edit image properties"
 msgstr ""
 
-#: lxc/network.go:547 lxc/network.go:548
+#: lxc/network.go:544 lxc/network.go:545
 msgid "Edit network configurations as YAML"
 msgstr ""
 
-#: lxc/profile.go:405 lxc/profile.go:406
+#: lxc/profile.go:401 lxc/profile.go:402
 msgid "Edit profile configurations as YAML"
 msgstr ""
 
-#: lxc/project.go:213 lxc/project.go:214
+#: lxc/project.go:211 lxc/project.go:212
 msgid "Edit project configurations as YAML"
 msgstr ""
 
-#: lxc/storage.go:212 lxc/storage.go:213
+#: lxc/storage.go:211 lxc/storage.go:212
 msgid "Edit storage pool configurations as YAML"
 msgstr ""
 
-#: lxc/storage_volume.go:778 lxc/storage_volume.go:779
+#: lxc/storage_volume.go:777 lxc/storage_volume.go:778
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:955 lxc/list.go:503
+#: lxc/image.go:952 lxc/list.go:461
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
 
-#: lxc/cluster.go:333
+#: lxc/cluster.go:327
 msgid "Enable clustering on a single non-clustered LXD instance"
 msgstr ""
 
-#: lxc/cluster.go:334
+#: lxc/cluster.go:328
 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:203
+#: lxc/config_template.go:201
 #, c-format
 msgid "Error updating template file: %s"
 msgstr ""
@@ -1063,20 +1063,20 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:854
+#: lxc/image.go:851
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:856
+#: lxc/image.go:853
 msgid "Expires: never"
 msgstr ""
 
-#: lxc/image.go:437
+#: lxc/image.go:434
 msgid "Export and download images"
 msgstr ""
 
-#: lxc/image.go:438
+#: lxc/image.go:435
 msgid ""
 "Export and download images\n"
 "\n"
@@ -1096,17 +1096,17 @@ msgstr ""
 msgid "Exporting the backup: %s"
 msgstr ""
 
-#: lxc/image.go:498
+#: lxc/image.go:495
 #, c-format
 msgid "Exporting the image: %s"
 msgstr ""
 
-#: lxc/config_template.go:278
+#: lxc/config_template.go:276
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
-#: lxc/image_alias.go:229
+#: lxc/config_trust.go:170 lxc/image.go:938 lxc/image.go:939
+#: lxc/image_alias.go:225
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1114,7 +1114,7 @@ msgstr ""
 msgid "Failed to connect to cluster member"
 msgstr ""
 
-#: lxc/utils.go:208
+#: lxc/utils.go:212
 #, c-format
 msgid "Failed to create alias %s"
 msgstr ""
@@ -1123,7 +1123,7 @@ msgstr ""
 msgid "Failed to get the new container name"
 msgstr ""
 
-#: lxc/utils.go:198
+#: lxc/utils.go:202
 #, c-format
 msgid "Failed to remove alias %s"
 msgstr ""
@@ -1133,15 +1133,15 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:119
+#: lxc/list.go:114
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
-#: lxc/network.go:840 lxc/operation.go:129
+#: lxc/network.go:837 lxc/operation.go:129
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:837
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1150,7 +1150,7 @@ msgstr ""
 msgid "Force pseudo-terminal allocation"
 msgstr ""
 
-#: lxc/cluster.go:253
+#: lxc/cluster.go:247
 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:261
+#: lxc/cluster.go:255
 #, c-format
 msgid ""
 "Forcefully removing a server from the cluster should only be done as a last\n"
@@ -1190,8 +1190,11 @@ msgid ""
 "Are you really sure you want to force removing %s? (yes/no): "
 msgstr ""
 
-#: lxc/image.go:931 lxc/list.go:118 lxc/network.go:813 lxc/profile.go:583
-#: lxc/remote.go:456
+#: 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
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1222,11 +1225,11 @@ msgstr ""
 msgid "Generate manpages for all commands"
 msgstr ""
 
-#: lxc/remote.go:212
+#: lxc/remote.go:207
 msgid "Generating a client certificate. This may take a minute..."
 msgstr ""
 
-#: lxc/network.go:728 lxc/network.go:729
+#: lxc/network.go:725 lxc/network.go:726
 msgid "Get runtime information on networks"
 msgstr ""
 
@@ -1238,23 +1241,23 @@ msgstr ""
 msgid "Get values for container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:670 lxc/network.go:671
+#: lxc/network.go:667 lxc/network.go:668
 msgid "Get values for network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:529 lxc/profile.go:530
+#: lxc/profile.go:525 lxc/profile.go:526
 msgid "Get values for profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:333 lxc/project.go:334
+#: lxc/project.go:331 lxc/project.go:332
 msgid "Get values for project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:332 lxc/storage.go:333
+#: lxc/storage.go:331 lxc/storage.go:332
 msgid "Get values for storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:978 lxc/storage_volume.go:979
+#: lxc/storage_volume.go:977 lxc/storage_volume.go:978
 msgid "Get values for storage volume configuration keys"
 msgstr ""
 
@@ -1266,7 +1269,7 @@ msgstr ""
 msgid "Group ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/network.go:978
+#: lxc/network.go:935
 msgid "HOSTNAME"
 msgstr ""
 
@@ -1274,7 +1277,7 @@ msgstr ""
 msgid "Hugepages:\n"
 msgstr ""
 
-#: lxc/operation.go:159
+#: lxc/operation.go:155
 msgid "ID"
 msgstr ""
 
@@ -1288,23 +1291,23 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:450
+#: lxc/project.go:447
 msgid "IMAGES"
 msgstr ""
 
-#: lxc/network.go:980
+#: lxc/network.go:937
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:458
+#: lxc/list.go:416
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:459
+#: lxc/list.go:417
 msgid "IPV6"
 msgstr ""
 
-#: lxc/config_trust.go:176
+#: lxc/config_trust.go:172
 msgid "ISSUE DATE"
 msgstr ""
 
@@ -1322,33 +1325,33 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1296
+#: lxc/image.go:1250
 msgid "Image already up to date."
 msgstr ""
 
-#: lxc/image.go:234
+#: lxc/image.go:231
 msgid "Image copied successfully!"
 msgstr ""
 
-#: lxc/image.go:561
+#: lxc/image.go:558
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:287 lxc/image.go:1259
+#: lxc/image.go:284 lxc/image.go:1213
 msgid "Image identifier missing"
 msgstr ""
 
-#: lxc/image.go:355
+#: lxc/image.go:352
 #, c-format
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:765
+#: lxc/image.go:762
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1294
+#: lxc/image.go:1248
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1360,14 +1363,14 @@ msgstr ""
 msgid "Import container backups"
 msgstr ""
 
-#: lxc/image.go:578
+#: lxc/image.go:575
 msgid ""
 "Import image into the image store\n"
 "\n"
 "Directory import is only available on Linux and must be performed as root."
 msgstr ""
 
-#: lxc/image.go:577
+#: lxc/image.go:574
 msgid "Import images into the image store"
 msgstr ""
 
@@ -1384,7 +1387,7 @@ msgstr ""
 msgid "Instance type"
 msgstr ""
 
-#: lxc/remote.go:164
+#: lxc/remote.go:159
 #, c-format
 msgid "Invalid URL scheme \"%s\" in \"%s\""
 msgstr ""
@@ -1393,33 +1396,32 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:528
+#: lxc/list.go:486
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:523
+#: lxc/list.go:481
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1220 lxc/list.go:371 lxc/network.go:913 lxc/profile.go:661
-#: lxc/remote.go:551
+#: lxc/utils.go:306
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:546
+#: lxc/list.go:504
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:543
+#: lxc/list.go:501
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:534
+#: lxc/list.go:492
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1434,7 +1436,7 @@ msgstr ""
 msgid "Invalid path %s"
 msgstr ""
 
-#: lxc/remote.go:153
+#: lxc/remote.go:148
 #, c-format
 msgid "Invalid protocol: %s"
 msgstr ""
@@ -1449,20 +1451,20 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:461 lxc/network.go:780
+#: lxc/info.go:461 lxc/network.go:777
 msgid "Ips:"
 msgstr ""
 
-#: lxc/image.go:138
+#: lxc/image.go:135
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:463
+#: lxc/list.go:421
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:487 lxc/network.go:984 lxc/operation.go:166
-#: lxc/storage_volume.go:1124
+#: lxc/list.go:445 lxc/network.go:941 lxc/operation.go:162
+#: lxc/storage_volume.go:1122
 msgid "LOCATION"
 msgstr ""
 
@@ -1470,16 +1472,16 @@ msgstr ""
 msgid "LXD - Command line client"
 msgstr ""
 
-#: lxc/cluster.go:101
+#: lxc/cluster.go:102
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:860
+#: lxc/image.go:857
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:859
 msgid "Last used: never"
 msgstr ""
 
@@ -1493,11 +1495,11 @@ msgstr ""
 msgid "Link speed: %dMbit/s (%s duplex)"
 msgstr ""
 
-#: lxc/network.go:928 lxc/network.go:929
+#: lxc/network.go:889 lxc/network.go:890
 msgid "List DHCP leases"
 msgstr ""
 
-#: lxc/alias.go:98 lxc/alias.go:99
+#: lxc/alias.go:97 lxc/alias.go:98
 msgid "List aliases"
 msgstr ""
 
@@ -1505,15 +1507,15 @@ msgstr ""
 msgid "List all the cluster members"
 msgstr ""
 
-#: lxc/network.go:808 lxc/network.go:809
+#: lxc/network.go:805 lxc/network.go:806
 msgid "List available networks"
 msgstr ""
 
-#: lxc/storage.go:505 lxc/storage.go:506
+#: lxc/storage.go:506 lxc/storage.go:507
 msgid "List available storage pools"
 msgstr ""
 
-#: lxc/operation.go:100 lxc/operation.go:101
+#: lxc/operation.go:99 lxc/operation.go:100
 msgid "List background operations"
 msgstr ""
 
@@ -1525,11 +1527,11 @@ msgstr ""
 msgid "List container file templates"
 msgstr ""
 
-#: lxc/list.go:47
+#: lxc/list.go:42
 msgid "List containers"
 msgstr ""
 
-#: lxc/list.go:48
+#: lxc/list.go:43
 msgid ""
 "List containers\n"
 "\n"
@@ -1594,22 +1596,22 @@ msgid ""
 "  Defaults to -1 (unlimited). Use 0 to limit to the column header size."
 msgstr ""
 
-#: lxc/image_alias.go:148
+#: lxc/image_alias.go:147
 msgid "List image aliases"
 msgstr ""
 
-#: lxc/image_alias.go:149
+#: lxc/image_alias.go:148
 msgid ""
 "List image aliases\n"
 "\n"
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:905
+#: lxc/image.go:902
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:906
+#: lxc/image.go:903
 msgid ""
 "List images\n"
 "\n"
@@ -1635,7 +1637,7 @@ msgid ""
 "    u - Upload date"
 msgstr ""
 
-#: lxc/profile.go:578 lxc/profile.go:579
+#: lxc/profile.go:574 lxc/profile.go:575
 msgid "List profiles"
 msgstr ""
 
@@ -1643,19 +1645,19 @@ msgstr ""
 msgid "List projects"
 msgstr ""
 
-#: lxc/storage_volume.go:1067 lxc/storage_volume.go:1068
+#: lxc/storage_volume.go:1068 lxc/storage_volume.go:1069
 msgid "List storage volumes"
 msgstr ""
 
-#: lxc/remote.go:451 lxc/remote.go:452
+#: lxc/remote.go:446 lxc/remote.go:447
 msgid "List the available remotes"
 msgstr ""
 
-#: lxc/config_trust.go:114 lxc/config_trust.go:115
+#: lxc/config_trust.go:113 lxc/config_trust.go:114
 msgid "List trusted clients"
 msgstr ""
 
-#: lxc/operation.go:24 lxc/operation.go:25
+#: lxc/operation.go:21 lxc/operation.go:22
 msgid "List, show and delete background operations"
 msgstr ""
 
@@ -1668,29 +1670,29 @@ msgstr ""
 msgid "Log:"
 msgstr ""
 
-#: lxc/network.go:979
+#: lxc/network.go:936
 msgid "MAC ADDRESS"
 msgstr ""
 
-#: lxc/network.go:774
+#: lxc/network.go:771
 #, c-format
 msgid "MAC address: %s"
 msgstr ""
 
-#: lxc/network.go:870
+#: lxc/network.go:867
 msgid "MANAGED"
 msgstr ""
 
-#: lxc/cluster.go:130
+#: lxc/cluster.go:127
 msgid "MESSAGE"
 msgstr ""
 
-#: lxc/network.go:775
+#: lxc/network.go:772
 #, c-format
 msgid "MTU: %d"
 msgstr ""
 
-#: lxc/image.go:136 lxc/image.go:583
+#: lxc/image.go:133 lxc/image.go:580
 msgid "Make image public"
 msgstr ""
 
@@ -1698,15 +1700,15 @@ msgstr ""
 msgid "Make the image public"
 msgstr ""
 
-#: lxc/network.go:33 lxc/network.go:34
+#: lxc/network.go:30 lxc/network.go:31
 msgid "Manage and attach containers to networks"
 msgstr ""
 
-#: lxc/cluster.go:28 lxc/cluster.go:29
+#: lxc/cluster.go:26 lxc/cluster.go:27
 msgid "Manage cluster members"
 msgstr ""
 
-#: lxc/alias.go:22 lxc/alias.go:23
+#: lxc/alias.go:19 lxc/alias.go:20
 msgid "Manage command aliases"
 msgstr ""
 
@@ -1718,7 +1720,7 @@ msgstr ""
 msgid "Manage container devices"
 msgstr ""
 
-#: lxc/config_template.go:28 lxc/config_template.go:29
+#: lxc/config_template.go:26 lxc/config_template.go:27
 msgid "Manage container file templates"
 msgstr ""
 
@@ -1730,15 +1732,15 @@ msgstr ""
 msgid "Manage files in containers"
 msgstr ""
 
-#: lxc/image_alias.go:25 lxc/image_alias.go:26
+#: lxc/image_alias.go:22 lxc/image_alias.go:23
 msgid "Manage image aliases"
 msgstr ""
 
-#: lxc/image.go:40
+#: lxc/image.go:37
 msgid "Manage images"
 msgstr ""
 
-#: lxc/image.go:41
+#: lxc/image.go:38
 msgid ""
 "Manage images\n"
 "\n"
@@ -1757,23 +1759,23 @@ msgid ""
 "hash or alias name (if one is set)."
 msgstr ""
 
-#: lxc/profile.go:30 lxc/profile.go:31
+#: lxc/profile.go:26 lxc/profile.go:27
 msgid "Manage profiles"
 msgstr ""
 
-#: lxc/project.go:28 lxc/project.go:29
+#: lxc/project.go:26 lxc/project.go:27
 msgid "Manage projects"
 msgstr ""
 
-#: lxc/storage.go:32 lxc/storage.go:33
+#: lxc/storage.go:31 lxc/storage.go:32
 msgid "Manage storage pools and volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:32
+#: lxc/storage_volume.go:31
 msgid "Manage storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:33
+#: lxc/storage_volume.go:32
 msgid ""
 "Manage storage volumes\n"
 "\n"
@@ -1781,11 +1783,11 @@ msgid ""
 "\" (user created) volumes."
 msgstr ""
 
-#: lxc/remote.go:36 lxc/remote.go:37
+#: lxc/remote.go:31 lxc/remote.go:32
 msgid "Manage the list of remote servers"
 msgstr ""
 
-#: lxc/config_trust.go:29 lxc/config_trust.go:30
+#: lxc/config_trust.go:26 lxc/config_trust.go:27
 msgid "Manage trusted clients"
 msgstr ""
 
@@ -1794,12 +1796,12 @@ msgstr ""
 msgid "Maximum number of VFs: %d"
 msgstr ""
 
-#: lxc/cluster.go:316
+#: lxc/cluster.go:310
 #, c-format
 msgid "Member %s removed"
 msgstr ""
 
-#: lxc/cluster.go:229
+#: lxc/cluster.go:223
 #, c-format
 msgid "Member %s renamed to %s"
 msgstr ""
@@ -1833,13 +1835,13 @@ msgid "Minimum level for log messages"
 msgstr ""
 
 #: lxc/config_metadata.go:101 lxc/config_metadata.go:199
-#: lxc/config_template.go:90 lxc/config_template.go:133
-#: lxc/config_template.go:175 lxc/config_template.go:259
-#: lxc/config_template.go:321 lxc/profile.go:200 lxc/profile.go:701
+#: 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
 msgid "Missing container name"
 msgstr ""
 
-#: lxc/profile.go:127
+#: lxc/profile.go:123
 msgid "Missing container.name name"
 msgstr ""
 
@@ -1849,40 +1851,40 @@ msgstr ""
 msgid "Missing name"
 msgstr ""
 
-#: lxc/network.go:134 lxc/network.go:207 lxc/network.go:352 lxc/network.go:402
-#: lxc/network.go:487 lxc/network.go:592 lxc/network.go:697 lxc/network.go:755
-#: lxc/network.go:953 lxc/network.go:1028 lxc/network.go:1083
-#: lxc/network.go:1150
+#: 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
 msgid "Missing network name"
 msgstr ""
 
-#: lxc/storage.go:187 lxc/storage.go:257 lxc/storage.go:358 lxc/storage.go:414
-#: lxc/storage.go:617 lxc/storage.go:689 lxc/storage_volume.go:164
-#: lxc/storage_volume.go:243 lxc/storage_volume.go:488
-#: lxc/storage_volume.go:564 lxc/storage_volume.go:640
-#: lxc/storage_volume.go:722 lxc/storage_volume.go:821
-#: lxc/storage_volume.go:1004 lxc/storage_volume.go:1092
-#: lxc/storage_volume.go:1203 lxc/storage_volume.go:1308
-#: lxc/storage_volume.go:1388 lxc/storage_volume.go:1510
-#: lxc/storage_volume.go:1581
+#: 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
 msgid "Missing pool name"
 msgstr ""
 
-#: lxc/profile.go:326 lxc/profile.go:380 lxc/profile.go:454 lxc/profile.go:554
-#: lxc/profile.go:777 lxc/profile.go:830 lxc/profile.go:886
+#: 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
 msgid "Missing profile name"
 msgstr ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:495 lxc/project.go:553 lxc/project.go:639
+#: 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
 msgid "Missing project name"
 msgstr ""
 
-#: lxc/profile.go:271
+#: lxc/profile.go:267
 msgid "Missing source profile name"
 msgstr ""
 
-#: lxc/storage_volume.go:329
+#: lxc/storage_volume.go:328
 msgid "Missing source volume name"
 msgstr ""
 
@@ -1911,8 +1913,8 @@ msgid ""
 "By default the monitor will listen to all message types."
 msgstr ""
 
-#: lxc/network.go:422 lxc/network.go:507 lxc/storage_volume.go:660
-#: lxc/storage_volume.go:741
+#: lxc/network.go:419 lxc/network.go:504 lxc/storage_volume.go:659
+#: lxc/storage_volume.go:740
 msgid "More than one device matches, specify the device name"
 msgstr ""
 
@@ -1924,7 +1926,7 @@ msgstr ""
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
-#: lxc/storage_volume.go:1146 lxc/storage_volume.go:1147
+#: lxc/storage_volume.go:1140 lxc/storage_volume.go:1141
 msgid "Move storage volumes between pools"
 msgstr ""
 
@@ -1932,12 +1934,12 @@ msgstr ""
 msgid "Move the container without its snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:366
+#: lxc/storage_volume.go:365
 #, c-format
 msgid "Moving the storage volume: %s"
 msgstr ""
 
-#: lxc/image.go:595
+#: lxc/image.go:592
 msgid "Must run as root to import from directory"
 msgstr ""
 
@@ -1945,9 +1947,9 @@ msgstr ""
 msgid "Must supply container name for: "
 msgstr ""
 
-#: lxc/cluster.go:126 lxc/list.go:464 lxc/network.go:868 lxc/profile.go:621
-#: lxc/project.go:449 lxc/remote.go:509 lxc/storage.go:559
-#: lxc/storage_volume.go:1119
+#: 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
 msgid "NAME"
 msgstr ""
 
@@ -1959,8 +1961,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:141 lxc/project.go:425
-#: lxc/project.go:430 lxc/remote.go:473 lxc/remote.go:478
+#: lxc/network.go:851 lxc/operation.go:141 lxc/project.go:426
+#: lxc/project.go:431 lxc/remote.go:468 lxc/remote.go:473
 msgid "NO"
 msgstr ""
 
@@ -1982,7 +1984,7 @@ msgstr ""
 msgid "NVRM Version: %v"
 msgstr ""
 
-#: lxc/info.go:422 lxc/network.go:773
+#: lxc/info.go:422 lxc/network.go:770
 #, c-format
 msgid "Name: %s"
 msgstr ""
@@ -1992,22 +1994,22 @@ msgstr ""
 msgid "Name: %v"
 msgstr ""
 
-#: lxc/network.go:310
+#: lxc/network.go:307
 #, c-format
 msgid "Network %s created"
 msgstr ""
 
-#: lxc/network.go:362
+#: lxc/network.go:359
 #, c-format
 msgid "Network %s deleted"
 msgstr ""
 
-#: lxc/network.go:308
+#: lxc/network.go:305
 #, c-format
 msgid "Network %s pending on member %s"
 msgstr ""
 
-#: lxc/network.go:1038
+#: lxc/network.go:992
 #, c-format
 msgid "Network %s renamed to %s"
 msgstr ""
@@ -2016,7 +2018,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:531 lxc/network.go:787
+#: lxc/info.go:531 lxc/network.go:784
 msgid "Network usage:"
 msgstr ""
 
@@ -2024,7 +2026,7 @@ msgstr ""
 msgid "New alias to define at target"
 msgstr ""
 
-#: lxc/image.go:139 lxc/image.go:584
+#: lxc/image.go:136 lxc/image.go:581
 msgid "New aliases to add to the image"
 msgstr ""
 
@@ -2032,19 +2034,19 @@ msgstr ""
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
-#: lxc/network.go:431 lxc/network.go:516
+#: lxc/network.go:428 lxc/network.go:513
 msgid "No device found for this network"
 msgstr ""
 
-#: lxc/storage_volume.go:669 lxc/storage_volume.go:750
+#: lxc/storage_volume.go:668 lxc/storage_volume.go:749
 msgid "No device found for this storage volume"
 msgstr ""
 
-#: lxc/storage_volume.go:343
+#: lxc/storage_volume.go:342
 msgid "No storage pool for source volume specified"
 msgstr ""
 
-#: lxc/storage_volume.go:350
+#: lxc/storage_volume.go:349
 msgid "No storage pool for target volume specified"
 msgstr ""
 
@@ -2058,27 +2060,27 @@ msgstr ""
 msgid "Node %d:\n"
 msgstr ""
 
-#: lxc/storage_volume.go:182 lxc/storage_volume.go:261
+#: lxc/storage_volume.go:181 lxc/storage_volume.go:260
 msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
-#: lxc/storage_volume.go:1518
+#: lxc/storage_volume.go:1512
 msgid "Only \"custom\" volumes can be snapshotted"
 msgstr ""
 
-#: lxc/remote.go:147
+#: lxc/remote.go:142
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:668
+#: lxc/image.go:665
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
-#: lxc/network.go:618 lxc/network.go:1098
+#: lxc/network.go:615 lxc/network.go:1052
 msgid "Only managed networks can be modified"
 msgstr ""
 
-#: lxc/operation.go:84
+#: lxc/operation.go:81
 #, c-format
 msgid "Operation %s deleted"
 msgstr ""
@@ -2096,35 +2098,35 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:668
+#: lxc/list.go:626
 msgid "PERSISTENT"
 msgstr ""
 
-#: lxc/list.go:466
+#: lxc/list.go:424
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:465
+#: lxc/list.go:423
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:467 lxc/project.go:451
+#: lxc/list.go:425 lxc/project.go:448
 msgid "PROFILES"
 msgstr ""
 
-#: lxc/remote.go:511
+#: lxc/remote.go:506
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:943 lxc/remote.go:513
+#: lxc/image.go:940 lxc/remote.go:508
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:525 lxc/network.go:790
+#: lxc/info.go:525 lxc/network.go:787
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:526 lxc/network.go:791
+#: lxc/info.go:526 lxc/network.go:788
 msgid "Packets sent"
 msgstr ""
 
@@ -2159,13 +2161,13 @@ msgstr ""
 msgid "Ports:"
 msgstr ""
 
-#: lxc/network.go:643 lxc/profile.go:501 lxc/project.go:305 lxc/storage.go:304
-#: lxc/storage_volume.go:919 lxc/storage_volume.go:949
+#: 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
 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:204 lxc/image.go:409
+#: lxc/config_template.go:202 lxc/image.go:406
 msgid "Press enter to start the editor again"
 msgstr ""
 
@@ -2200,32 +2202,32 @@ msgstr ""
 msgid "Product: %v (%v)"
 msgstr ""
 
-#: lxc/profile.go:149
+#: lxc/profile.go:145
 #, c-format
 msgid "Profile %s added to %s"
 msgstr ""
 
-#: lxc/profile.go:339
+#: lxc/profile.go:335
 #, c-format
 msgid "Profile %s created"
 msgstr ""
 
-#: lxc/profile.go:390
+#: lxc/profile.go:386
 #, c-format
 msgid "Profile %s deleted"
 msgstr ""
 
-#: lxc/profile.go:711
+#: lxc/profile.go:667
 #, c-format
 msgid "Profile %s isn't currently applied to %s"
 msgstr ""
 
-#: lxc/profile.go:736
+#: lxc/profile.go:692
 #, c-format
 msgid "Profile %s removed from %s"
 msgstr ""
 
-#: lxc/profile.go:787
+#: lxc/profile.go:743
 #, c-format
 msgid "Profile %s renamed to %s"
 msgstr ""
@@ -2238,7 +2240,7 @@ msgstr ""
 msgid "Profile to apply to the target container"
 msgstr ""
 
-#: lxc/profile.go:229
+#: lxc/profile.go:225
 #, c-format
 msgid "Profiles %s applied to %s"
 msgstr ""
@@ -2248,30 +2250,30 @@ msgstr ""
 msgid "Profiles: %s"
 msgstr ""
 
-#: lxc/project.go:134
+#: lxc/project.go:132
 #, c-format
 msgid "Project %s created"
 msgstr ""
 
-#: lxc/project.go:190
+#: lxc/project.go:188
 #, c-format
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:510
+#: lxc/project.go:505
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:865
+#: lxc/image.go:862
 msgid "Properties:"
 msgstr ""
 
-#: lxc/remote.go:96
+#: lxc/remote.go:91
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:843
+#: lxc/image.go:840
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2312,7 +2314,7 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1235 lxc/image.go:1236
+#: lxc/image.go:1189 lxc/image.go:1190
 msgid "Refresh images"
 msgstr ""
 
@@ -2321,33 +2323,33 @@ msgstr ""
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1264
+#: lxc/image.go:1218
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
 
-#: lxc/remote.go:596
+#: lxc/remote.go:554
 #, c-format
 msgid "Remote %s already exists"
 msgstr ""
 
-#: lxc/project.go:695 lxc/remote.go:588 lxc/remote.go:650 lxc/remote.go:700
-#: lxc/remote.go:738
+#: lxc/project.go:690 lxc/remote.go:546 lxc/remote.go:608 lxc/remote.go:658
+#: lxc/remote.go:696
 #, c-format
 msgid "Remote %s doesn't exist"
 msgstr ""
 
-#: lxc/remote.go:121
+#: lxc/remote.go:116
 #, c-format
 msgid "Remote %s exists as <%s>"
 msgstr ""
 
-#: lxc/remote.go:592 lxc/remote.go:654 lxc/remote.go:742
+#: lxc/remote.go:550 lxc/remote.go:612 lxc/remote.go:700
 #, c-format
 msgid "Remote %s is static and cannot be modified"
 msgstr ""
 
-#: lxc/remote.go:93
+#: lxc/remote.go:88
 msgid "Remote admin password"
 msgstr ""
 
@@ -2370,11 +2372,11 @@ msgstr ""
 msgid "Remove %s (yes/no): "
 msgstr ""
 
-#: lxc/cluster.go:248 lxc/cluster.go:249
+#: lxc/cluster.go:242 lxc/cluster.go:243
 msgid "Remove a member from the cluster"
 msgstr ""
 
-#: lxc/alias.go:197 lxc/alias.go:198
+#: lxc/alias.go:191 lxc/alias.go:192
 msgid "Remove aliases"
 msgstr ""
 
@@ -2382,24 +2384,24 @@ msgstr ""
 msgid "Remove container devices"
 msgstr ""
 
-#: lxc/profile.go:676 lxc/profile.go:677
+#: lxc/profile.go:632 lxc/profile.go:633
 msgid "Remove profiles from containers"
 msgstr ""
 
-#: lxc/remote.go:629 lxc/remote.go:630
+#: lxc/remote.go:587 lxc/remote.go:588
 msgid "Remove remotes"
 msgstr ""
 
-#: lxc/config_trust.go:196 lxc/config_trust.go:197
+#: lxc/config_trust.go:190 lxc/config_trust.go:191
 msgid "Remove trusted clients"
 msgstr ""
 
-#: lxc/cluster.go:198 lxc/cluster.go:199
+#: lxc/cluster.go:192 lxc/cluster.go:193
 msgid "Rename a cluster member"
 msgstr ""
 
-#: lxc/alias.go:146 lxc/alias.go:147 lxc/image_alias.go:249
-#: lxc/image_alias.go:250
+#: lxc/alias.go:140 lxc/alias.go:141 lxc/image_alias.go:243
+#: lxc/image_alias.go:244
 msgid "Rename aliases"
 msgstr ""
 
@@ -2407,31 +2409,31 @@ msgstr ""
 msgid "Rename containers and snapshots"
 msgstr ""
 
-#: lxc/network.go:1003 lxc/network.go:1004
+#: lxc/network.go:957 lxc/network.go:958
 msgid "Rename networks"
 msgstr ""
 
-#: lxc/profile.go:752 lxc/profile.go:753
+#: lxc/profile.go:708 lxc/profile.go:709
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:470 lxc/project.go:471
+#: lxc/project.go:465 lxc/project.go:466
 msgid "Rename projects"
 msgstr ""
 
-#: lxc/remote.go:567 lxc/remote.go:568
+#: lxc/remote.go:525 lxc/remote.go:526
 msgid "Rename remotes"
 msgstr ""
 
-#: lxc/storage_volume.go:1178
+#: lxc/storage_volume.go:1172
 msgid "Rename storage volumes"
 msgstr ""
 
-#: lxc/storage_volume.go:1177
+#: lxc/storage_volume.go:1171
 msgid "Rename storage volumes and storage volume snapshots"
 msgstr ""
 
-#: lxc/storage_volume.go:1244 lxc/storage_volume.go:1264
+#: lxc/storage_volume.go:1238 lxc/storage_volume.go:1258
 #, c-format
 msgid "Renamed storage volume from \"%s\" to \"%s\""
 msgstr ""
@@ -2471,7 +2473,7 @@ msgid ""
 "If --stateful is passed, then the running state will be restored too."
 msgstr ""
 
-#: lxc/storage_volume.go:1557 lxc/storage_volume.go:1558
+#: lxc/storage_volume.go:1551 lxc/storage_volume.go:1552
 msgid "Restore storage volume snapshots"
 msgstr ""
 
@@ -2488,15 +2490,15 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:946
+#: lxc/image.go:943
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:468
+#: lxc/list.go:426
 msgid "SNAPSHOTS"
 msgstr ""
 
-#: lxc/storage.go:566
+#: lxc/storage.go:563
 msgid "SOURCE"
 msgstr ""
 
@@ -2504,19 +2506,19 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:129 lxc/list.go:469 lxc/network.go:875 lxc/storage.go:564
+#: lxc/cluster.go:126 lxc/list.go:427 lxc/network.go:872 lxc/storage.go:561
 msgid "STATE"
 msgstr ""
 
-#: lxc/remote.go:514
+#: lxc/remote.go:509
 msgid "STATIC"
 msgstr ""
 
-#: lxc/operation.go:162
+#: lxc/operation.go:158
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:471
+#: lxc/list.go:429
 msgid "STORAGE POOL"
 msgstr ""
 
@@ -2524,19 +2526,19 @@ msgstr ""
 msgid "Send a raw query to LXD"
 msgstr ""
 
-#: lxc/remote.go:95
+#: lxc/remote.go:90
 msgid "Server authentication type (tls or candid)"
 msgstr ""
 
-#: lxc/remote.go:264
+#: lxc/remote.go:259
 msgid "Server certificate NACKed by user"
 msgstr ""
 
-#: lxc/remote.go:396
+#: lxc/remote.go:391
 msgid "Server doesn't trust us after authentication"
 msgstr ""
 
-#: lxc/remote.go:94
+#: lxc/remote.go:89
 msgid "Server protocol (lxd or simplestreams)"
 msgstr ""
 
@@ -2572,11 +2574,11 @@ msgid ""
 "    lxc config set [<remote>:][<container>] <key> <value>"
 msgstr ""
 
-#: lxc/network.go:1053
+#: lxc/network.go:1007
 msgid "Set network configuration keys"
 msgstr ""
 
-#: lxc/network.go:1054
+#: lxc/network.go:1008
 msgid ""
 "Set network configuration keys\n"
 "\n"
@@ -2585,11 +2587,11 @@ msgid ""
 "    lxc network set [<remote>:]<network> <key> <value>"
 msgstr ""
 
-#: lxc/profile.go:802
+#: lxc/profile.go:758
 msgid "Set profile configuration keys"
 msgstr ""
 
-#: lxc/profile.go:803
+#: lxc/profile.go:759
 msgid ""
 "Set profile configuration keys\n"
 "\n"
@@ -2598,11 +2600,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:525
+#: lxc/project.go:520
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:526
+#: lxc/project.go:521
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2611,11 +2613,11 @@ msgid ""
 "    lxc project set [<remote>:]<project> <key> <value>"
 msgstr ""
 
-#: lxc/storage.go:587
+#: lxc/storage.go:579
 msgid "Set storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage.go:588
+#: lxc/storage.go:580
 msgid ""
 "Set storage pool configuration keys\n"
 "\n"
@@ -2624,11 +2626,11 @@ msgid ""
 "    lxc storage set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1280
+#: lxc/storage_volume.go:1274
 msgid "Set storage volume configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1281
+#: lxc/storage_volume.go:1275
 msgid ""
 "Set storage volume configuration keys\n"
 "\n"
@@ -2637,7 +2639,7 @@ msgid ""
 "    lxc storage volume set [<remote>:]<pool> <volume> <key> <value>"
 msgstr ""
 
-#: lxc/remote.go:717 lxc/remote.go:718
+#: lxc/remote.go:675 lxc/remote.go:676
 msgid "Set the URL for the remote"
 msgstr ""
 
@@ -2673,15 +2675,15 @@ msgstr ""
 msgid "Show container or server information"
 msgstr ""
 
-#: lxc/config_template.go:296 lxc/config_template.go:297
+#: lxc/config_template.go:292 lxc/config_template.go:293
 msgid "Show content of container file templates"
 msgstr ""
 
-#: lxc/cluster.go:148 lxc/cluster.go:149
+#: lxc/cluster.go:142 lxc/cluster.go:143
 msgid "Show details of a cluster member"
 msgstr ""
 
-#: lxc/operation.go:185 lxc/operation.go:186
+#: lxc/operation.go:177 lxc/operation.go:178
 msgid "Show details on a background operation"
 msgstr ""
 
@@ -2689,7 +2691,7 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1312 lxc/image.go:1313
+#: lxc/image.go:1266 lxc/image.go:1267
 msgid "Show image properties"
 msgstr ""
 
@@ -2701,27 +2703,27 @@ msgstr ""
 msgid "Show local and remote versions"
 msgstr ""
 
-#: lxc/network.go:1123 lxc/network.go:1124
+#: lxc/network.go:1077 lxc/network.go:1078
 msgid "Show network configurations"
 msgstr ""
 
-#: lxc/profile.go:861 lxc/profile.go:862
+#: lxc/profile.go:817 lxc/profile.go:818
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:614 lxc/project.go:615
+#: lxc/project.go:609 lxc/project.go:610
 msgid "Show project options"
 msgstr ""
 
-#: lxc/storage.go:656 lxc/storage.go:657
+#: lxc/storage.go:648 lxc/storage.go:649
 msgid "Show storage pool configurations and resources"
 msgstr ""
 
-#: lxc/storage_volume.go:1356
+#: lxc/storage_volume.go:1350
 msgid "Show storage volum configurations"
 msgstr ""
 
-#: lxc/storage_volume.go:1357
+#: lxc/storage_volume.go:1351
 msgid "Show storage volume configurations"
 msgstr ""
 
@@ -2729,7 +2731,7 @@ msgstr ""
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
-#: lxc/remote.go:415 lxc/remote.go:416
+#: lxc/remote.go:410 lxc/remote.go:411
 msgid "Show the default remote"
 msgstr ""
 
@@ -2741,23 +2743,23 @@ msgstr ""
 msgid "Show the resources available to the server"
 msgstr ""
 
-#: lxc/storage.go:660
+#: lxc/storage.go:652
 msgid "Show the resources available to the storage pool"
 msgstr ""
 
-#: lxc/storage.go:391
+#: lxc/storage.go:390
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:791 lxc/image.go:792
+#: lxc/image.go:788 lxc/image.go:789
 msgid "Show useful information about images"
 msgstr ""
 
-#: lxc/storage.go:387 lxc/storage.go:388
+#: lxc/storage.go:386 lxc/storage.go:387
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:838
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2767,7 +2769,7 @@ msgstr ""
 msgid "Size: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1486 lxc/storage_volume.go:1487
+#: lxc/storage_volume.go:1480 lxc/storage_volume.go:1481
 msgid "Snapshot storage volumes"
 msgstr ""
 
@@ -2785,7 +2787,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:883
+#: lxc/image.go:880
 msgid "Source:"
 msgstr ""
 
@@ -2798,7 +2800,7 @@ msgstr ""
 msgid "Starting %s"
 msgstr ""
 
-#: lxc/network.go:776
+#: lxc/network.go:773
 #, c-format
 msgid "State: %s"
 msgstr ""
@@ -2825,17 +2827,17 @@ msgstr ""
 msgid "Stopping the container failed: %s"
 msgstr ""
 
-#: lxc/storage.go:145
+#: lxc/storage.go:144
 #, c-format
 msgid "Storage pool %s created"
 msgstr ""
 
-#: lxc/storage.go:197
+#: lxc/storage.go:196
 #, c-format
 msgid "Storage pool %s deleted"
 msgstr ""
 
-#: lxc/storage.go:143
+#: lxc/storage.go:142
 #, c-format
 msgid "Storage pool %s pending on member %s"
 msgstr ""
@@ -2844,21 +2846,21 @@ msgstr ""
 msgid "Storage pool name"
 msgstr ""
 
-#: lxc/storage_volume.go:522
+#: lxc/storage_volume.go:521
 #, c-format
 msgid "Storage volume %s created"
 msgstr ""
 
-#: lxc/storage_volume.go:599
+#: lxc/storage_volume.go:598
 #, c-format
 msgid "Storage volume %s deleted"
 msgstr ""
 
-#: lxc/storage_volume.go:363
+#: lxc/storage_volume.go:362
 msgid "Storage volume copied successfully!"
 msgstr ""
 
-#: lxc/storage_volume.go:367
+#: lxc/storage_volume.go:366
 msgid "Storage volume moved successfully!"
 msgstr ""
 
@@ -2884,20 +2886,20 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:667 lxc/project.go:668
+#: lxc/project.go:662 lxc/project.go:663
 msgid "Switch the current project"
 msgstr ""
 
-#: lxc/remote.go:679 lxc/remote.go:680
+#: lxc/remote.go:637 lxc/remote.go:638
 msgid "Switch the default remote"
 msgstr ""
 
-#: lxc/alias.go:128
+#: lxc/alias.go:124
 msgid "TARGET"
 msgstr ""
 
-#: lxc/list.go:470 lxc/network.go:869 lxc/network.go:981 lxc/operation.go:160
-#: lxc/storage_volume.go:1118
+#: lxc/list.go:428 lxc/network.go:866 lxc/network.go:938 lxc/operation.go:156
+#: lxc/storage_volume.go:1116
 msgid "TYPE"
 msgstr ""
 
@@ -2954,12 +2956,12 @@ msgstr ""
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
-#: lxc/network.go:436 lxc/network.go:521 lxc/storage_volume.go:674
-#: lxc/storage_volume.go:755
+#: lxc/network.go:433 lxc/network.go:518 lxc/storage_volume.go:673
+#: lxc/storage_volume.go:754
 msgid "The specified device doesn't exist"
 msgstr ""
 
-#: lxc/network.go:440 lxc/network.go:525
+#: lxc/network.go:437 lxc/network.go:522
 msgid "The specified device doesn't match the network"
 msgstr ""
 
@@ -2975,7 +2977,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:844
+#: lxc/image.go:841
 msgid "Timestamps:"
 msgstr ""
 
@@ -2996,7 +2998,7 @@ 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:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:293 lxc/network.go:758 lxc/storage.go:419
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -3010,7 +3012,7 @@ msgstr ""
 msgid "Transceiver type: %s"
 msgstr ""
 
-#: lxc/storage_volume.go:1150
+#: lxc/storage_volume.go:1144
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
@@ -3018,7 +3020,7 @@ msgstr ""
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:55 lxc/storage_volume.go:305
+#: lxc/move.go:55 lxc/storage_volume.go:304
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
@@ -3027,7 +3029,7 @@ msgstr ""
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:698
+#: lxc/image.go:695
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -3050,16 +3052,16 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:947
+#: lxc/image.go:944
 msgid "UPLOAD DATE"
 msgstr ""
 
-#: lxc/cluster.go:127 lxc/remote.go:510
+#: lxc/cluster.go:124 lxc/remote.go:505
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:872 lxc/profile.go:622 lxc/project.go:452 lxc/storage.go:568
-#: lxc/storage_volume.go:1121
+#: lxc/network.go:869 lxc/profile.go:618 lxc/project.go:449 lxc/storage.go:565
+#: lxc/storage_volume.go:1119
 msgid "USED BY"
 msgstr ""
 
@@ -3073,7 +3075,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:962 lxc/list.go:517
+#: lxc/image.go:959 lxc/list.go:475
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3095,27 +3097,27 @@ msgstr ""
 msgid "Unset container or server configuration keys"
 msgstr ""
 
-#: lxc/network.go:1185 lxc/network.go:1186
+#: lxc/network.go:1139 lxc/network.go:1140
 msgid "Unset network configuration keys"
 msgstr ""
 
-#: lxc/profile.go:915 lxc/profile.go:916
+#: lxc/profile.go:871 lxc/profile.go:872
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:585 lxc/project.go:586
+#: lxc/project.go:580 lxc/project.go:581
 msgid "Unset project configuration keys"
 msgstr ""
 
-#: lxc/storage.go:740 lxc/storage.go:741
+#: lxc/storage.go:732 lxc/storage.go:733
 msgid "Unset storage pool configuration keys"
 msgstr ""
 
-#: lxc/storage_volume.go:1455 lxc/storage_volume.go:1456
+#: lxc/storage_volume.go:1449 lxc/storage_volume.go:1450
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:848
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -3134,7 +3136,7 @@ msgstr ""
 msgid "User ID to run the command as (default 0)"
 msgstr ""
 
-#: lxc/cluster.go:280 lxc/delete.go:47
+#: lxc/cluster.go:274 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
 
@@ -3181,8 +3183,8 @@ msgstr ""
 msgid "Whether or not to snapshot the container's running state"
 msgstr ""
 
-#: lxc/network.go:856 lxc/operation.go:143 lxc/project.go:427
-#: lxc/project.go:432 lxc/remote.go:475 lxc/remote.go:480
+#: lxc/network.go:853 lxc/operation.go:143 lxc/project.go:428
+#: lxc/project.go:433 lxc/remote.go:470 lxc/remote.go:475
 msgid "YES"
 msgstr ""
 
@@ -3202,15 +3204,15 @@ msgstr ""
 msgid "You must specify a source container name"
 msgstr ""
 
-#: lxc/alias.go:53
+#: lxc/alias.go:50
 msgid "add <alias> <target>"
 msgstr ""
 
-#: lxc/config_trust.go:57
+#: lxc/config_trust.go:54
 msgid "add [<remote>:] <cert>"
 msgstr ""
 
-#: lxc/profile.go:101
+#: lxc/profile.go:97
 msgid "add [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3218,39 +3220,39 @@ msgstr ""
 msgid "add [<remote>:]<container|profile> <device> <type> [key=value...]"
 msgstr ""
 
-#: lxc/remote.go:86
+#: lxc/remote.go:81
 msgid "add [<remote>] <IP|FQDN|URL>"
 msgstr ""
 
-#: lxc/alias.go:21 lxc/image_alias.go:24
+#: lxc/alias.go:18 lxc/image_alias.go:21
 msgid "alias"
 msgstr ""
 
-#: lxc/profile.go:163
+#: lxc/profile.go:159
 msgid "assign [<remote>:]<container> <profiles>"
 msgstr ""
 
-#: lxc/network.go:108
+#: lxc/network.go:105
 msgid ""
 "attach [<remote>:]<network> <container> [<device name>] [<interface name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:138
+#: lxc/storage_volume.go:137
 msgid "attach [<remote>:]<pool> <volume> <container> [<device name>] <path>"
 msgstr ""
 
-#: lxc/storage_volume.go:217
+#: lxc/storage_volume.go:216
 msgid ""
 "attach-profile [<remote:>]<pool> <volume> <profile> [<device name>] <path>"
 msgstr ""
 
-#: lxc/network.go:181
+#: lxc/network.go:178
 msgid ""
 "attach-profile [<remote>:]<network> <profile> [<device name>] [<interface "
 "name>]"
 msgstr ""
 
-#: lxc/cluster.go:27
+#: lxc/cluster.go:25
 msgid "cluster"
 msgstr ""
 
@@ -3262,15 +3264,15 @@ msgstr ""
 msgid "console [<remote>:]<container>"
 msgstr ""
 
-#: lxc/storage_volume.go:299
+#: lxc/storage_volume.go:298
 msgid "copy <pool>/<volume>[/<snapshot>] <pool>/<volume>"
 msgstr ""
 
-#: lxc/image.go:127
+#: lxc/image.go:124
 msgid "copy [<remote>:]<image> <remote>:"
 msgstr ""
 
-#: lxc/profile.go:243
+#: lxc/profile.go:239
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
@@ -3278,47 +3280,47 @@ msgstr ""
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
-#: lxc/image_alias.go:57
+#: lxc/image_alias.go:54
 msgid "create [<remote>:]<alias> <fingerprint>"
 msgstr ""
 
-#: lxc/config_template.go:64
+#: lxc/config_template.go:62
 msgid "create [<remote>:]<container> <template>"
 msgstr ""
 
-#: lxc/network.go:254
+#: lxc/network.go:251
 msgid "create [<remote>:]<network> [key=value...]"
 msgstr ""
 
-#: lxc/storage.go:87
+#: lxc/storage.go:86
 msgid "create [<remote>:]<pool> <driver> [key=value...]"
 msgstr ""
 
-#: lxc/storage_volume.go:461
+#: lxc/storage_volume.go:460
 msgid "create [<remote>:]<pool> <volume> [key=value...]"
 msgstr ""
 
-#: lxc/profile.go:300
+#: lxc/profile.go:296
 msgid "create [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:84
+#: lxc/project.go:82
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:437
+#: lxc/project.go:438
 msgid "current"
 msgstr ""
 
-#: lxc/remote.go:503
+#: lxc/remote.go:498
 msgid "default"
 msgstr ""
 
-#: lxc/image_alias.go:103
+#: lxc/image_alias.go:100
 msgid "delete [<remote>:]<alias>"
 msgstr ""
 
-#: lxc/config_template.go:106
+#: lxc/config_template.go:104
 msgid "delete [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3332,51 +3334,51 @@ msgid ""
 "<snapshot>]...]"
 msgstr ""
 
-#: lxc/image.go:261
+#: lxc/image.go:258
 msgid "delete [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/network.go:325
+#: lxc/network.go:322
 msgid "delete [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:51
+#: lxc/operation.go:48
 msgid "delete [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:160
+#: lxc/storage.go:159
 msgid "delete [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:537
+#: lxc/storage_volume.go:536
 msgid "delete [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:353
+#: lxc/profile.go:349
 msgid "delete [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:148
+#: lxc/project.go:146
 msgid "delete [<remote>:]<project>"
 msgstr ""
 
-#: lxc/storage.go:446
+#: lxc/storage.go:445
 msgid "description"
 msgstr ""
 
-#: lxc/network.go:376
+#: lxc/network.go:373
 msgid "detach [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:614
+#: lxc/storage_volume.go:613
 msgid "detach [<remote>:]<pool> <volume> <container> [<device name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:696
+#: lxc/storage_volume.go:695
 msgid "detach-profile [<remote:>]<pool> <volume> <profile> [<device name>]"
 msgstr ""
 
-#: lxc/network.go:461
+#: lxc/network.go:458
 msgid "detach-profile [<remote>:]<network> <container> [<device name>]"
 msgstr ""
 
@@ -3384,11 +3386,11 @@ msgstr ""
 msgid "device"
 msgstr ""
 
-#: lxc/image.go:835
+#: lxc/image.go:832
 msgid "disabled"
 msgstr ""
 
-#: lxc/storage.go:445
+#: lxc/storage.go:444
 msgid "driver"
 msgstr ""
 
@@ -3396,7 +3398,7 @@ msgstr ""
 msgid "edit [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:149
+#: lxc/config_template.go:147
 msgid "edit [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3404,27 +3406,27 @@ msgstr ""
 msgid "edit [<remote>:]<container>/<path>"
 msgstr ""
 
-#: lxc/image.go:313
+#: lxc/image.go:310
 msgid "edit [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:546
+#: lxc/network.go:543
 msgid "edit [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:211
+#: lxc/storage.go:210
 msgid "edit [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:777
+#: lxc/storage_volume.go:776
 msgid "edit [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:404
+#: lxc/profile.go:400
 msgid "edit [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:212
+#: lxc/project.go:210
 msgid "edit [<remote>:]<project>"
 msgstr ""
 
@@ -3432,11 +3434,11 @@ msgstr ""
 msgid "edit [<remote>:][<container>[/<snapshot>]]"
 msgstr ""
 
-#: lxc/cluster.go:332
+#: lxc/cluster.go:326
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:834
 msgid "enabled"
 msgstr ""
 
@@ -3460,7 +3462,7 @@ msgid ""
 "storage]"
 msgstr ""
 
-#: lxc/image.go:436
+#: lxc/image.go:433
 msgid "export [<remote>:]<image> [<target>]"
 msgstr ""
 
@@ -3472,23 +3474,23 @@ msgstr ""
 msgid "get [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:669
+#: lxc/network.go:666
 msgid "get [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:331
+#: lxc/storage.go:330
 msgid "get [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:977
+#: lxc/storage_volume.go:976
 msgid "get [<remote>:]<pool> <volume>[/<snapshot>] <key>"
 msgstr ""
 
-#: lxc/profile.go:528
+#: lxc/profile.go:524
 msgid "get [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:332
+#: lxc/project.go:330
 msgid "get [<remote>:]<project> <key>"
 msgstr ""
 
@@ -3496,15 +3498,15 @@ msgstr ""
 msgid "get [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/remote.go:414
+#: lxc/remote.go:409
 msgid "get-default"
 msgstr ""
 
-#: lxc/image.go:39
+#: lxc/image.go:36
 msgid "image"
 msgstr ""
 
-#: lxc/image.go:576
+#: lxc/image.go:573
 msgid ""
 "import <tarball>|<directory>|<URL> [<rootfs tarball>] [<remote>:] "
 "[key=value...]"
@@ -3514,19 +3516,19 @@ msgstr ""
 msgid "import [<remote>:] <backup file>"
 msgstr ""
 
-#: lxc/storage.go:443
+#: lxc/storage.go:442
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:790
+#: lxc/image.go:787
 msgid "info [<remote>:]<image>"
 msgstr ""
 
-#: lxc/network.go:727
+#: lxc/network.go:724
 msgid "info [<remote>:]<network>"
 msgstr ""
 
-#: lxc/storage.go:386
+#: lxc/storage.go:385
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
@@ -3542,20 +3544,20 @@ msgstr ""
 msgid "launch [<remote>:]<image> [<remote>:][<name>]"
 msgstr ""
 
-#: lxc/alias.go:96 lxc/remote.go:449
+#: lxc/alias.go:95 lxc/remote.go:444
 msgid "list"
 msgstr ""
 
-#: lxc/cluster.go:63 lxc/config_trust.go:112 lxc/network.go:806
-#: lxc/operation.go:98 lxc/profile.go:576 lxc/project.go:379 lxc/storage.go:503
+#: 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
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:903 lxc/list.go:45
+#: lxc/image.go:900 lxc/list.go:40
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
-#: lxc/image_alias.go:146
+#: lxc/image_alias.go:145
 msgid "list [<remote>:] [<filters>...]"
 msgstr ""
 
@@ -3567,27 +3569,27 @@ msgstr ""
 msgid "list [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/storage_volume.go:1065
+#: lxc/storage_volume.go:1066
 msgid "list [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/network.go:927
+#: lxc/network.go:888
 msgid "list-leases [<remote>:]<network>"
 msgstr ""
 
-#: lxc/alias.go:57
+#: lxc/alias.go:54
 msgid ""
 "lxc alias add list \"list -c ns46S\"\n"
 "    Overwrite the \"list\" command to pass -c ns46S."
 msgstr ""
 
-#: lxc/alias.go:200
+#: lxc/alias.go:194
 msgid ""
 "lxc alias remove my-list\n"
 "    Remove the \"my-list\" alias."
 msgstr ""
 
-#: lxc/alias.go:149
+#: lxc/alias.go:143
 msgid ""
 "lxc alias rename list my-list\n"
 "    Rename existing alias \"list\" to \"my-list\"."
@@ -3637,7 +3639,7 @@ msgid ""
 "   To push /etc/hosts into the container \"foo\"."
 msgstr ""
 
-#: lxc/image.go:317
+#: lxc/image.go:314
 msgid ""
 "lxc image edit <image>\n"
 "    Launch a text editor to edit the properties\n"
@@ -3669,7 +3671,7 @@ msgstr ""
 msgid "lxc launch ubuntu:16.04 u1"
 msgstr ""
 
-#: lxc/list.go:108
+#: lxc/list.go:103
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC\n"
 "  Show containers using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", "
@@ -3707,13 +3709,13 @@ msgid ""
 "    Rename a snapshot."
 msgstr ""
 
-#: lxc/operation.go:188
+#: lxc/operation.go:180
 msgid ""
 "lxc operation show 344a79e4-d88a-45bf-9c39-c72c26f6ab8a\n"
 "    Show details on that operation UUID"
 msgstr ""
 
-#: lxc/profile.go:168
+#: lxc/profile.go:164
 msgid ""
 "lxc profile assign foo default,bar\n"
 "    Set the profiles for \"foo\" to \"default\" and \"bar\".\n"
@@ -3725,13 +3727,13 @@ msgid ""
 "    Remove all profile from \"foo\""
 msgstr ""
 
-#: lxc/profile.go:408
+#: lxc/profile.go:404
 msgid ""
 "lxc profile edit <profile> < profile.yaml\n"
 "    Update a profile using the content of profile.yaml"
 msgstr ""
 
-#: lxc/project.go:216
+#: lxc/project.go:214
 msgid ""
 "lxc project edit <project> < project.yaml\n"
 "    Update a project using the content of project.yaml"
@@ -3758,19 +3760,19 @@ msgid ""
 "    Restore the snapshot."
 msgstr ""
 
-#: lxc/storage.go:215
+#: lxc/storage.go:214
 msgid ""
 "lxc storage edit [<remote>:]<pool> < pool.yaml\n"
 "    Update a storage pool using the content of pool.yaml."
 msgstr ""
 
-#: lxc/storage_volume.go:781
+#: lxc/storage_volume.go:780
 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:1359
+#: lxc/storage_volume.go:1353
 msgid ""
 "lxc storage volume show default data\n"
 "    Will show the properties of a custom volume called \"data\" in the "
@@ -3793,7 +3795,7 @@ msgstr ""
 msgid "monitor [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:1144
+#: lxc/storage_volume.go:1138
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
@@ -3803,23 +3805,23 @@ msgid ""
 "<snapshot>]]"
 msgstr ""
 
-#: lxc/storage.go:444
+#: lxc/storage.go:443
 msgid "name"
 msgstr ""
 
-#: lxc/network.go:32
+#: lxc/network.go:29
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:825 lxc/image.go:830 lxc/image.go:1000
+#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:997
 msgid "no"
 msgstr ""
 
-#: lxc/remote.go:257
+#: lxc/remote.go:252
 msgid "ok (y/n)?"
 msgstr ""
 
-#: lxc/operation.go:23
+#: lxc/operation.go:20
 msgid "operation"
 msgstr ""
 
@@ -3835,11 +3837,11 @@ msgstr ""
 msgid "please use `lxc profile`"
 msgstr ""
 
-#: lxc/profile.go:29
+#: lxc/profile.go:25
 msgid "profile"
 msgstr ""
 
-#: lxc/project.go:27
+#: lxc/project.go:25
 msgid "project"
 msgstr ""
 
@@ -3865,27 +3867,27 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1234
+#: lxc/image.go:1188
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
-#: lxc/remote.go:35
+#: lxc/remote.go:30
 msgid "remote"
 msgstr ""
 
-#: lxc/alias.go:195
+#: lxc/alias.go:189
 msgid "remove <alias>"
 msgstr ""
 
-#: lxc/remote.go:627
+#: lxc/remote.go:585
 msgid "remove <remote>"
 msgstr ""
 
-#: lxc/config_trust.go:194
+#: lxc/config_trust.go:188
 msgid "remove [<remote>:] <hostname|fingerprint>"
 msgstr ""
 
-#: lxc/profile.go:675
+#: lxc/profile.go:631
 msgid "remove [<remote>:]<container> <profile>"
 msgstr ""
 
@@ -3893,19 +3895,19 @@ msgstr ""
 msgid "remove [<remote>:]<container|profile> <name>..."
 msgstr ""
 
-#: lxc/cluster.go:246
+#: lxc/cluster.go:240
 msgid "remove [<remote>:]<member>"
 msgstr ""
 
-#: lxc/alias.go:144
+#: lxc/alias.go:138
 msgid "rename <old alias> <new alias>"
 msgstr ""
 
-#: lxc/remote.go:565
+#: lxc/remote.go:523
 msgid "rename <remote> <new-name>"
 msgstr ""
 
-#: lxc/image_alias.go:247
+#: lxc/image_alias.go:241
 msgid "rename [<remote>:]<alias> <new-name>"
 msgstr ""
 
@@ -3913,25 +3915,25 @@ msgstr ""
 msgid "rename [<remote>:]<container>[/<snapshot>] <container>[/<snapshot>]"
 msgstr ""
 
-#: lxc/cluster.go:196
+#: lxc/cluster.go:190
 msgid "rename [<remote>:]<member> <new-name>"
 msgstr ""
 
-#: lxc/network.go:1001
+#: lxc/network.go:955
 msgid "rename [<remote>:]<network> <new-name>"
 msgstr ""
 
-#: lxc/storage_volume.go:1176
+#: lxc/storage_volume.go:1170
 msgid ""
 "rename [<remote>:]<pool> <old name>[/<old snapshot name>] <new name>[/<new "
 "snapshot name>]"
 msgstr ""
 
-#: lxc/profile.go:750
+#: lxc/profile.go:706
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:468
+#: lxc/project.go:463
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -3943,7 +3945,7 @@ msgstr ""
 msgid "restore [<remote>:]<container> <snapshot>"
 msgstr ""
 
-#: lxc/storage_volume.go:1556
+#: lxc/storage_volume.go:1550
 msgid "restore [<remote>:]<pool> <volume> <snapshot>"
 msgstr ""
 
@@ -3951,23 +3953,23 @@ msgstr ""
 msgid "set [<remote>:]<container|profile> <device> <key>=<value>..."
 msgstr ""
 
-#: lxc/network.go:1052
+#: lxc/network.go:1006
 msgid "set [<remote>:]<network> <key>=<value>..."
 msgstr ""
 
-#: lxc/storage.go:586
+#: lxc/storage.go:578
 msgid "set [<remote>:]<pool> <key> <value>"
 msgstr ""
 
-#: lxc/storage_volume.go:1279
+#: lxc/storage_volume.go:1273
 msgid "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgstr ""
 
-#: lxc/profile.go:801
+#: lxc/profile.go:757
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:524
+#: lxc/project.go:519
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -3975,7 +3977,7 @@ msgstr ""
 msgid "set [<remote>:][<container>] <key>=<value>..."
 msgstr ""
 
-#: lxc/remote.go:716
+#: lxc/remote.go:674
 msgid "set-url <remote> <URL>"
 msgstr ""
 
@@ -3983,7 +3985,7 @@ msgstr ""
 msgid "show [<remote>:]<container>"
 msgstr ""
 
-#: lxc/config_template.go:295
+#: lxc/config_template.go:291
 msgid "show [<remote>:]<container> <template>"
 msgstr ""
 
@@ -3991,35 +3993,35 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1311
+#: lxc/image.go:1265
 msgid "show [<remote>:]<image>"
 msgstr ""
 
-#: lxc/cluster.go:147
+#: lxc/cluster.go:141
 msgid "show [<remote>:]<member>"
 msgstr ""
 
-#: lxc/network.go:1122
+#: lxc/network.go:1076
 msgid "show [<remote>:]<network>"
 msgstr ""
 
-#: lxc/operation.go:184
+#: lxc/operation.go:176
 msgid "show [<remote>:]<operation>"
 msgstr ""
 
-#: lxc/storage.go:655
+#: lxc/storage.go:647
 msgid "show [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/storage_volume.go:1355
+#: lxc/storage_volume.go:1349
 msgid "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgstr ""
 
-#: lxc/profile.go:860
+#: lxc/profile.go:816
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:613
+#: lxc/project.go:608
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4031,11 +4033,11 @@ msgstr ""
 msgid "snapshot [<remote>:]<container> [<snapshot name>]"
 msgstr ""
 
-#: lxc/storage_volume.go:1485
+#: lxc/storage_volume.go:1479
 msgid "snapshot [<remote>:]<pool> <volume> [<snapshot>]"
 msgstr ""
 
-#: lxc/storage.go:448
+#: lxc/storage.go:447
 msgid "space used"
 msgstr ""
 
@@ -4055,15 +4057,15 @@ msgstr ""
 msgid "stop [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/storage.go:31
+#: lxc/storage.go:30
 msgid "storage"
 msgstr ""
 
-#: lxc/remote.go:678
+#: lxc/remote.go:636
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:666
+#: lxc/project.go:661
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
@@ -4072,15 +4074,15 @@ msgstr ""
 msgid "taken at %s"
 msgstr ""
 
-#: lxc/config_template.go:27
+#: lxc/config_template.go:25
 msgid "template"
 msgstr ""
 
-#: lxc/storage.go:447
+#: lxc/storage.go:446
 msgid "total space"
 msgstr ""
 
-#: lxc/config_trust.go:28
+#: lxc/config_trust.go:25
 msgid "trust"
 msgstr ""
 
@@ -4092,23 +4094,23 @@ msgstr ""
 msgid "unset [<remote>:]<container|profile> <device> <key>"
 msgstr ""
 
-#: lxc/network.go:1184
+#: lxc/network.go:1138
 msgid "unset [<remote>:]<network> <key>"
 msgstr ""
 
-#: lxc/storage.go:739
+#: lxc/storage.go:731
 msgid "unset [<remote>:]<pool> <key>"
 msgstr ""
 
-#: lxc/storage_volume.go:1454
+#: lxc/storage_volume.go:1448
 msgid "unset [<remote>:]<pool> <volume> <key>"
 msgstr ""
 
-#: lxc/profile.go:914
+#: lxc/profile.go:870
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:584
+#: lxc/project.go:579
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
@@ -4116,7 +4118,7 @@ msgstr ""
 msgid "unset [<remote>:][<container>] <key>"
 msgstr ""
 
-#: lxc/storage.go:442
+#: lxc/storage.go:441
 msgid "used by"
 msgstr ""
 
@@ -4124,15 +4126,15 @@ msgstr ""
 msgid "version [<remote>:]"
 msgstr ""
 
-#: lxc/storage_volume.go:31
+#: lxc/storage_volume.go:30
 msgid "volume"
 msgstr ""
 
-#: lxc/remote.go:263
+#: lxc/remote.go:258
 msgid "y"
 msgstr ""
 
-#: lxc/cluster.go:279 lxc/delete.go:46 lxc/image.go:827 lxc/image.go:832
-#: lxc/image.go:998
+#: lxc/cluster.go:273 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