[lxc-devel] [lxd/master] Unify error messages

monstermunchkin on Github lxc-bot at linuxcontainers.org
Fri Jul 27 08:07:37 UTC 2018


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 373 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20180727/5def5ed9/attachment.bin>
-------------- next part --------------
From 511a7ddecaddb1d8d57eb61575d5d77afa59a3b7 Mon Sep 17 00:00:00 2001
From: Thomas Hipp <thomas.hipp at canonical.com>
Date: Fri, 27 Jul 2018 09:17:28 +0200
Subject: [PATCH 1/2] *: Unify error messages

Error messages start with a capital letter and do not end with a period.

Signed-off-by: Thomas Hipp <thomas.hipp at canonical.com>
---
 lxc/delete.go                         |  2 +-
 lxc/file.go                           |  2 +-
 lxc/image.go                          |  2 +-
 lxc/network.go                        |  8 +++----
 lxc/publish.go                        |  2 +-
 lxc/rename.go                         |  2 +-
 lxc/storage_volume.go                 | 12 +++++-----
 lxc/utils/cancel.go                   |  2 +-
 lxd/container.go                      | 42 +++++++++++++++++------------------
 lxd/container_exec.go                 |  4 ++--
 lxd/container_lxc.go                  | 42 +++++++++++++++++------------------
 lxd/container_patch.go                |  2 +-
 lxd/containers_post.go                |  6 ++---
 lxd/daemon_images.go                  |  2 +-
 lxd/images.go                         |  4 ++--
 lxd/main_callhook.go                  |  2 +-
 lxd/migrate_container.go              |  6 ++---
 lxd/networks.go                       |  2 +-
 lxd/patches.go                        |  6 ++---
 lxd/profiles_utils.go                 |  2 +-
 lxd/proxy_device_utils.go             |  2 +-
 shared/archive_linux.go               |  4 ++--
 shared/container.go                   |  6 ++---
 shared/idmap/idmapset_linux.go        | 10 ++++-----
 shared/simplestreams/simplestreams.go |  8 +++----
 shared/util.go                        |  6 ++---
 shared/util_linux.go                  | 10 ++++-----
 27 files changed, 99 insertions(+), 99 deletions(-)

diff --git a/lxc/delete.go b/lxc/delete.go
index c9db770de..8b89fc05d 100644
--- a/lxc/delete.go
+++ b/lxc/delete.go
@@ -101,7 +101,7 @@ func (c *cmdDelete) Run(cmd *cobra.Command, args []string) error {
 
 		if ct.StatusCode != 0 && ct.StatusCode != api.Stopped {
 			if !c.flagForce {
-				return fmt.Errorf(i18n.G("The container is currently running, stop it first or pass --force."))
+				return fmt.Errorf(i18n.G("The container is currently running, stop it first or pass --force"))
 			}
 
 			req := api.ContainerStatePut{
diff --git a/lxc/file.go b/lxc/file.go
index 84e59d8a4..a237f5068 100644
--- a/lxc/file.go
+++ b/lxc/file.go
@@ -638,7 +638,7 @@ func (c *cmdFile) recursivePushFile(d lxd.ContainerServer, container string, sou
 
 		// Detect unsupported files
 		if !fInfo.Mode().IsRegular() && !fInfo.Mode().IsDir() && fInfo.Mode()&os.ModeSymlink != os.ModeSymlink {
-			return fmt.Errorf(i18n.G("'%s' isn't a supported file type."), p)
+			return fmt.Errorf(i18n.G("'%s' isn't a supported file type"), p)
 		}
 
 		// Prepare for file transfer
diff --git a/lxc/image.go b/lxc/image.go
index 7baac50da..f54460612 100644
--- a/lxc/image.go
+++ b/lxc/image.go
@@ -654,7 +654,7 @@ func (c *cmdImageImport) Run(cmd *cobra.Command, args []string) error {
 	}
 
 	if strings.HasPrefix(imageFile, "http://") {
-		return fmt.Errorf(i18n.G("Only https:// is supported for remote image import."))
+		return fmt.Errorf(i18n.G("Only https:// is supported for remote image import"))
 	}
 
 	createArgs := &lxd.ImageCreateArgs{}
diff --git a/lxc/network.go b/lxc/network.go
index f3f2d62ae..3eea68535 100644
--- a/lxc/network.go
+++ b/lxc/network.go
@@ -414,7 +414,7 @@ func (c *cmdNetworkDetach) Run(cmd *cobra.Command, args []string) error {
 		for n, d := range container.Devices {
 			if d["type"] == "nic" && d["parent"] == resource.name {
 				if devName != "" {
-					return fmt.Errorf(i18n.G("More than one device matches, specify the device name."))
+					return fmt.Errorf(i18n.G("More than one device matches, specify the device name"))
 				}
 
 				devName = n
@@ -499,7 +499,7 @@ func (c *cmdNetworkDetachProfile) Run(cmd *cobra.Command, args []string) error {
 		for n, d := range profile.Devices {
 			if d["type"] == "nic" && d["parent"] == resource.name {
 				if devName != "" {
-					return fmt.Errorf(i18n.G("More than one device matches, specify the device name."))
+					return fmt.Errorf(i18n.G("More than one device matches, specify the device name"))
 				}
 
 				devName = n
@@ -610,7 +610,7 @@ func (c *cmdNetworkEdit) Run(cmd *cobra.Command, args []string) error {
 	}
 
 	if !network.Managed {
-		return fmt.Errorf(i18n.G("Only managed networks can be modified."))
+		return fmt.Errorf(i18n.G("Only managed networks can be modified"))
 	}
 
 	data, err := yaml.Marshal(&network)
@@ -1063,7 +1063,7 @@ func (c *cmdNetworkSet) Run(cmd *cobra.Command, args []string) error {
 	}
 
 	if !network.Managed {
-		return fmt.Errorf(i18n.G("Only managed networks can be modified."))
+		return fmt.Errorf(i18n.G("Only managed networks can be modified"))
 	}
 
 	key := args[1]
diff --git a/lxc/publish.go b/lxc/publish.go
index bcaed4cfc..243c4dd9a 100644
--- a/lxc/publish.go
+++ b/lxc/publish.go
@@ -106,7 +106,7 @@ func (c *cmdPublish) Run(cmd *cobra.Command, args []string) error {
 
 		if wasRunning {
 			if !c.flagForce {
-				return fmt.Errorf(i18n.G("The container is currently running. Use --force to have it stopped and restarted."))
+				return fmt.Errorf(i18n.G("The container is currently running. Use --force to have it stopped and restarted"))
 			}
 
 			if ct.Ephemeral {
diff --git a/lxc/rename.go b/lxc/rename.go
index 7a3f08c2c..9ef9287ac 100644
--- a/lxc/rename.go
+++ b/lxc/rename.go
@@ -48,7 +48,7 @@ func (c *cmdRename) Run(cmd *cobra.Command, args []string) error {
 	if sourceRemote != destRemote {
 		// We just do renames
 		if strings.Contains(args[1], ":") {
-			return fmt.Errorf(i18n.G("Can't specify a different remote for rename."))
+			return fmt.Errorf(i18n.G("Can't specify a different remote for rename"))
 		}
 
 		// Don't require the remote to be passed as both source and target
diff --git a/lxc/storage_volume.go b/lxc/storage_volume.go
index 84b643068..a70012c3f 100644
--- a/lxc/storage_volume.go
+++ b/lxc/storage_volume.go
@@ -161,7 +161,7 @@ func (c *cmdStorageVolumeAttach) Run(cmd *cobra.Command, args []string) error {
 
 	volName, volType := c.storageVolume.parseVolume("custom", args[1])
 	if volType != "custom" {
-		return fmt.Errorf(i18n.G("Only \"custom\" volumes can be attached to containers."))
+		return fmt.Errorf(i18n.G("Only \"custom\" volumes can be attached to containers"))
 	}
 
 	// Check if the requested storage volume actually exists
@@ -240,7 +240,7 @@ func (c *cmdStorageVolumeAttachProfile) Run(cmd *cobra.Command, args []string) e
 
 	volName, volType := c.storageVolume.parseVolume("custom", args[1])
 	if volType != "custom" {
-		return fmt.Errorf(i18n.G("Only \"custom\" volumes can be attached to containers."))
+		return fmt.Errorf(i18n.G("Only \"custom\" volumes can be attached to containers"))
 	}
 
 	// Check if the requested storage volume actually exists
@@ -588,7 +588,7 @@ func (c *cmdStorageVolumeDetach) Run(cmd *cobra.Command, args []string) error {
 		for n, d := range container.Devices {
 			if d["type"] == "disk" && d["pool"] == resource.name && d["source"] == args[1] {
 				if devName != "" {
-					return fmt.Errorf(i18n.G("More than one device matches, specify the device name."))
+					return fmt.Errorf(i18n.G("More than one device matches, specify the device name"))
 				}
 
 				devName = n
@@ -597,7 +597,7 @@ func (c *cmdStorageVolumeDetach) Run(cmd *cobra.Command, args []string) error {
 	}
 
 	if devName == "" {
-		return fmt.Errorf(i18n.G("No device found for this storage volume."))
+		return fmt.Errorf(i18n.G("No device found for this storage volume"))
 	}
 
 	_, ok := container.Devices[devName]
@@ -669,7 +669,7 @@ func (c *cmdStorageVolumeDetachProfile) Run(cmd *cobra.Command, args []string) e
 		for n, d := range profile.Devices {
 			if d["type"] == "disk" && d["pool"] == resource.name && d["source"] == args[1] {
 				if devName != "" {
-					return fmt.Errorf(i18n.G("More than one device matches, specify the device name."))
+					return fmt.Errorf(i18n.G("More than one device matches, specify the device name"))
 				}
 
 				devName = n
@@ -678,7 +678,7 @@ func (c *cmdStorageVolumeDetachProfile) Run(cmd *cobra.Command, args []string) e
 	}
 
 	if devName == "" {
-		return fmt.Errorf(i18n.G("No device found for this storage volume."))
+		return fmt.Errorf(i18n.G("No device found for this storage volume"))
 	}
 
 	_, ok := profile.Devices[devName]
diff --git a/lxc/utils/cancel.go b/lxc/utils/cancel.go
index 4f936a044..8b378db65 100644
--- a/lxc/utils/cancel.go
+++ b/lxc/utils/cancel.go
@@ -37,7 +37,7 @@ func CancelableWait(op lxd.RemoteOperation, progress *ProgressRenderer) error {
 			count++
 
 			if count == 3 {
-				return fmt.Errorf(i18n.G("User signaled us three times, exiting. The remote operation will keep running."))
+				return fmt.Errorf(i18n.G("User signaled us three times, exiting. The remote operation will keep running"))
 			}
 
 			if progress != nil {
diff --git a/lxd/container.go b/lxd/container.go
index 4ce7968d2..b01640aa2 100644
--- a/lxd/container.go
+++ b/lxd/container.go
@@ -53,7 +53,7 @@ func containerValidName(name string) error {
 	}
 
 	if !shared.ValidHostname(name) {
-		return fmt.Errorf("Container name isn't a valid hostname.")
+		return fmt.Errorf("Container name isn't a valid hostname")
 	}
 
 	return nil
@@ -279,11 +279,11 @@ func containerValidConfig(sysOS *sys.OS, config map[string]string, profile bool,
 
 	for k, v := range config {
 		if profile && strings.HasPrefix(k, "volatile.") {
-			return fmt.Errorf("Volatile keys can only be set on containers.")
+			return fmt.Errorf("Volatile keys can only be set on containers")
 		}
 
 		if profile && strings.HasPrefix(k, "image.") {
-			return fmt.Errorf("Image keys can only be set on containers.")
+			return fmt.Errorf("Image keys can only be set on containers")
 		}
 
 		err := containerValidConfigKey(sysOS, k, v)
@@ -307,7 +307,7 @@ func containerValidConfig(sysOS *sys.OS, config map[string]string, profile bool,
 	}
 
 	if expanded && (config["security.privileged"] == "" || !shared.IsTrue(config["security.privileged"])) && sysOS.IdmapSet == nil {
-		return fmt.Errorf("LXD doesn't have a uid/gid allocation. In this mode, only privileged containers are supported.")
+		return fmt.Errorf("LXD doesn't have a uid/gid allocation. In this mode, only privileged containers are supported")
 	}
 
 	unprivOnly := os.Getenv("LXD_UNPRIVILEGED_ONLY")
@@ -378,37 +378,37 @@ func containerValidDevices(db *db.Cluster, devices types.Devices, profile bool,
 			if !expanded && !shared.StringInSlice(m["path"], diskDevicePaths) {
 				diskDevicePaths = append(diskDevicePaths, m["path"])
 			} else if !expanded {
-				return fmt.Errorf("More than one disk device uses the same path: %s.", m["path"])
+				return fmt.Errorf("More than one disk device uses the same path: %s", m["path"])
 			}
 
 			if m["path"] == "" {
-				return fmt.Errorf("Disk entry is missing the required \"path\" property.")
+				return fmt.Errorf("Disk entry is missing the required \"path\" property")
 			}
 
 			if m["source"] == "" && m["path"] != "/" {
-				return fmt.Errorf("Disk entry is missing the required \"source\" property.")
+				return fmt.Errorf("Disk entry is missing the required \"source\" property")
 			}
 
 			if m["path"] == "/" && m["source"] != "" {
-				return fmt.Errorf("Root disk entry may not have a \"source\" property set.")
+				return fmt.Errorf("Root disk entry may not have a \"source\" property set")
 			}
 
 			if m["size"] != "" && m["path"] != "/" {
-				return fmt.Errorf("Only the root disk may have a size quota.")
+				return fmt.Errorf("Only the root disk may have a size quota")
 			}
 
 			if (m["path"] == "/" || !shared.IsDir(m["source"])) && m["recursive"] != "" {
-				return fmt.Errorf("The recursive option is only supported for additional bind-mounted paths.")
+				return fmt.Errorf("The recursive option is only supported for additional bind-mounted paths")
 			}
 
 			if m["pool"] != "" {
 				if filepath.IsAbs(m["source"]) {
-					return fmt.Errorf("Storage volumes cannot be specified as absolute paths.")
+					return fmt.Errorf("Storage volumes cannot be specified as absolute paths")
 				}
 
 				_, err := db.StoragePoolGetID(m["pool"])
 				if err != nil {
-					return fmt.Errorf("The \"%s\" storage pool doesn't exist.", m["pool"])
+					return fmt.Errorf("The \"%s\" storage pool doesn't exist", m["pool"])
 				}
 			}
 
@@ -423,7 +423,7 @@ func containerValidDevices(db *db.Cluster, devices types.Devices, profile bool,
 			}
 		} else if shared.StringInSlice(m["type"], []string{"unix-char", "unix-block"}) {
 			if m["source"] == "" && m["path"] == "" {
-				return fmt.Errorf("Unix device entry is missing the required \"source\" or \"path\" property.")
+				return fmt.Errorf("Unix device entry is missing the required \"source\" or \"path\" property")
 			}
 
 			if (m["required"] == "" || shared.IsTrue(m["required"])) && (m["major"] == "" || m["minor"] == "") {
@@ -432,7 +432,7 @@ func containerValidDevices(db *db.Cluster, devices types.Devices, profile bool,
 					srcPath = m["path"]
 				}
 				if !shared.PathExists(srcPath) {
-					return fmt.Errorf("The device path doesn't exist on the host and major/minor wasn't specified.")
+					return fmt.Errorf("The device path doesn't exist on the host and major/minor wasn't specified")
 				}
 
 				dType, _, _, err := deviceGetAttributes(srcPath)
@@ -441,16 +441,16 @@ func containerValidDevices(db *db.Cluster, devices types.Devices, profile bool,
 				}
 
 				if m["type"] == "unix-char" && dType != "c" {
-					return fmt.Errorf("Path specified for unix-char device is a block device.")
+					return fmt.Errorf("Path specified for unix-char device is a block device")
 				}
 
 				if m["type"] == "unix-block" && dType != "b" {
-					return fmt.Errorf("Path specified for unix-block device is a character device.")
+					return fmt.Errorf("Path specified for unix-block device is a character device")
 				}
 			}
 		} else if m["type"] == "usb" {
 			if m["vendorid"] == "" {
-				return fmt.Errorf("Missing vendorid for USB device.")
+				return fmt.Errorf("Missing vendorid for USB device")
 			}
 		} else if m["type"] == "gpu" {
 			if m["pci"] != "" && !shared.PathExists(fmt.Sprintf("/sys/bus/pci/devices/%s", m["pci"])) {
@@ -466,11 +466,11 @@ func containerValidDevices(db *db.Cluster, devices types.Devices, profile bool,
 			}
 		} else if m["type"] == "proxy" {
 			if m["listen"] == "" {
-				return fmt.Errorf("Proxy device entry is missing the required \"listen\" property.")
+				return fmt.Errorf("Proxy device entry is missing the required \"listen\" property")
 			}
 
 			if m["connect"] == "" {
-				return fmt.Errorf("Proxy device entry is missing the required \"connect\" property.")
+				return fmt.Errorf("Proxy device entry is missing the required \"connect\" property")
 			}
 
 			listenAddr, err := parseAddr(m["listen"])
@@ -916,12 +916,12 @@ func containerCreateAsSnapshot(s *state.State, args db.ContainerArgs, sourceCont
 	// Deal with state
 	if args.Stateful {
 		if !sourceContainer.IsRunning() {
-			return nil, fmt.Errorf("Unable to create a stateful snapshot. The container isn't running.")
+			return nil, fmt.Errorf("Unable to create a stateful snapshot. The container isn't running")
 		}
 
 		_, err := exec.LookPath("criu")
 		if err != nil {
-			return nil, fmt.Errorf("Unable to create a stateful snapshot. CRIU isn't installed.")
+			return nil, fmt.Errorf("Unable to create a stateful snapshot. CRIU isn't installed")
 		}
 
 		stateDir := sourceContainer.StatePath()
diff --git a/lxd/container_exec.go b/lxd/container_exec.go
index 4bbb9e05f..78fee39b5 100644
--- a/lxd/container_exec.go
+++ b/lxd/container_exec.go
@@ -367,11 +367,11 @@ func containerExecPost(d *Daemon, r *http.Request) Response {
 	}
 
 	if !c.IsRunning() {
-		return BadRequest(fmt.Errorf("Container is not running."))
+		return BadRequest(fmt.Errorf("Container is not running"))
 	}
 
 	if c.IsFrozen() {
-		return BadRequest(fmt.Errorf("Container is frozen."))
+		return BadRequest(fmt.Errorf("Container is frozen"))
 	}
 
 	env := map[string]string{}
diff --git a/lxd/container_lxc.go b/lxd/container_lxc.go
index ad7b4ebc6..e0058d448 100644
--- a/lxd/container_lxc.go
+++ b/lxd/container_lxc.go
@@ -343,7 +343,7 @@ func containerLXCCreate(s *state.State, args db.ContainerArgs) (container, error
 
 	if rootDiskDevice["pool"] == "" {
 		c.Delete()
-		return nil, fmt.Errorf("The container's root device is missing the pool property.")
+		return nil, fmt.Errorf("The container's root device is missing the pool property")
 	}
 
 	storagePool := rootDiskDevice["pool"]
@@ -866,7 +866,7 @@ func findIdmap(state *state.State, cName string, isolatedStr string, configBase
 		return set, offset, nil
 	}
 
-	return nil, 0, fmt.Errorf("Not enough uid/gid available for the container.")
+	return nil, 0, fmt.Errorf("Not enough uid/gid available for the container")
 }
 
 func (c *containerLXC) init() error {
@@ -892,7 +892,7 @@ func (c *containerLXC) initLXC(config bool) error {
 
 	// Check if being called from a hook
 	if c.fromHook {
-		return fmt.Errorf("You can't use go-lxc from inside a LXC hook.")
+		return fmt.Errorf("You can't use go-lxc from inside a LXC hook")
 	}
 
 	// Check if already initialized
@@ -2414,7 +2414,7 @@ func (c *containerLXC) Start(stateful bool) error {
 	// If stateful, restore now
 	if stateful {
 		if !c.stateful {
-			return fmt.Errorf("Container has no existing state to restore.")
+			return fmt.Errorf("Container has no existing state to restore")
 		}
 
 		criuMigrationArgs := CriuMigrationArgs{
@@ -3144,7 +3144,7 @@ func (c *containerLXC) Restore(sourceContainer container, stateful bool) error {
 	if shared.PathExists(c.StatePath()) {
 		_, err := exec.LookPath("criu")
 		if err != nil {
-			return fmt.Errorf("Failed to restore container state. CRIU isn't installed.")
+			return fmt.Errorf("Failed to restore container state. CRIU isn't installed")
 		}
 	}
 
@@ -3724,21 +3724,21 @@ func (c *containerLXC) Update(args db.ContainerArgs, userRequested bool) error {
 	if userRequested {
 		for k, v := range args.Config {
 			if strings.HasPrefix(k, "volatile.") && c.localConfig[k] != v {
-				return fmt.Errorf("Volatile keys are read-only.")
+				return fmt.Errorf("Volatile keys are read-only")
 			}
 
 			if strings.HasPrefix(k, "image.") && c.localConfig[k] != v {
-				return fmt.Errorf("Image keys are read-only.")
+				return fmt.Errorf("Image keys are read-only")
 			}
 		}
 
 		for k, v := range c.localConfig {
 			if strings.HasPrefix(k, "volatile.") && args.Config[k] != v {
-				return fmt.Errorf("Volatile keys are read-only.")
+				return fmt.Errorf("Volatile keys are read-only")
 			}
 
 			if strings.HasPrefix(k, "image.") && args.Config[k] != v {
-				return fmt.Errorf("Image keys are read-only.")
+				return fmt.Errorf("Image keys are read-only")
 			}
 		}
 	}
@@ -3945,12 +3945,12 @@ func (c *containerLXC) Update(args db.ContainerArgs, userRequested bool) error {
 
 		if newLocalRootDiskDevice["pool"] == "" {
 			if len(newProfileRootDiskDevices) == 0 {
-				return fmt.Errorf("Update will cause the container to rely on a profile's root disk device but none was found.")
+				return fmt.Errorf("Update will cause the container to rely on a profile's root disk device but none was found")
 			} else if len(newProfileRootDiskDevices) > 1 {
-				return fmt.Errorf("Update will cause the container to rely on a profile's root disk device but conflicting devices were found.")
+				return fmt.Errorf("Update will cause the container to rely on a profile's root disk device but conflicting devices were found")
 			} else if c.expandedDevices[newProfileRootDiskDevices[0]]["pool"] != oldLocalRootDiskDevice["pool"] {
 				newRootDiskDeviceKey = newProfileRootDiskDevices[0]
-				return fmt.Errorf("Using the profile's root disk device would change the storage pool of the container.")
+				return fmt.Errorf("Using the profile's root disk device would change the storage pool of the container")
 			}
 		}
 	} else {
@@ -3964,14 +3964,14 @@ func (c *containerLXC) Update(args db.ContainerArgs, userRequested bool) error {
 			if len(oldProfileRootDiskDevices) > 0 {
 				oldRootDiskDeviceKey = oldProfileRootDiskDevices[0]
 				if oldExpandedDevices[oldRootDiskDeviceKey]["pool"] != newLocalRootDiskDevice["pool"] {
-					return fmt.Errorf("The new local root disk device would change the storage pool of the container.")
+					return fmt.Errorf("The new local root disk device would change the storage pool of the container")
 				}
 			}
 		} else {
 			if len(newProfileRootDiskDevices) == 0 {
-				return fmt.Errorf("Update will cause the container to rely on a profile's root disk device but none was found.")
+				return fmt.Errorf("Update will cause the container to rely on a profile's root disk device but none was found")
 			} else if len(newProfileRootDiskDevices) > 1 {
-				return fmt.Errorf("Using the profile's root disk device would change the storage pool of the container.")
+				return fmt.Errorf("Using the profile's root disk device would change the storage pool of the container")
 			}
 			newRootDiskDeviceKey = newProfileRootDiskDevices[0]
 		}
@@ -5089,7 +5089,7 @@ func (c *containerLXC) Migrate(args *CriuMigrationArgs) error {
 
 	_, err := exec.LookPath("criu")
 	if err != nil {
-		return fmt.Errorf("Unable to perform container live migration. CRIU isn't installed.")
+		return fmt.Errorf("Unable to perform container live migration. CRIU isn't installed")
 	}
 
 	logger.Info("Migrating container", ctxMap)
@@ -7676,7 +7676,7 @@ func (c *containerLXC) createDiskDevice(name string, m types.Device) (string, er
 		// yet support container mounts.
 
 		if filepath.IsAbs(m["source"]) {
-			return "", fmt.Errorf("When the \"pool\" property is set \"source\" must specify the name of a volume, not a path.")
+			return "", fmt.Errorf("When the \"pool\" property is set \"source\" must specify the name of a volume, not a path")
 		}
 
 		volumeTypeName := ""
@@ -7691,7 +7691,7 @@ func (c *containerLXC) createDiskDevice(name string, m types.Device) (string, er
 
 		switch volumeTypeName {
 		case storagePoolVolumeTypeNameContainer:
-			return "", fmt.Errorf("Using container storage volumes is not supported.")
+			return "", fmt.Errorf("Using container storage volumes is not supported")
 		case "":
 			// We simply received the name of a storage volume.
 			volumeTypeName = storagePoolVolumeTypeNameCustom
@@ -7699,9 +7699,9 @@ func (c *containerLXC) createDiskDevice(name string, m types.Device) (string, er
 		case storagePoolVolumeTypeNameCustom:
 			srcPath = shared.VarPath("storage-pools", m["pool"], volumeTypeName, volumeName)
 		case storagePoolVolumeTypeNameImage:
-			return "", fmt.Errorf("Using image storage volumes is not supported.")
+			return "", fmt.Errorf("Using image storage volumes is not supported")
 		default:
-			return "", fmt.Errorf("Unknown storage type prefix \"%s\" found.", volumeTypeName)
+			return "", fmt.Errorf("Unknown storage type prefix \"%s\" found", volumeTypeName)
 		}
 
 		// Initialize a new storage interface and check if the
@@ -7709,7 +7709,7 @@ func (c *containerLXC) createDiskDevice(name string, m types.Device) (string, er
 		volumeType, _ := storagePoolVolumeTypeNameToType(volumeTypeName)
 		s, err := storagePoolVolumeAttachInit(c.state, m["pool"], volumeName, volumeType, c)
 		if err != nil && !isOptional {
-			return "", fmt.Errorf("Failed to initialize storage volume \"%s\" of type \"%s\" on storage pool \"%s\": %s.",
+			return "", fmt.Errorf("Failed to initialize storage volume \"%s\" of type \"%s\" on storage pool \"%s\": %s",
 				volumeName,
 				volumeTypeName,
 				m["pool"], err)
diff --git a/lxd/container_patch.go b/lxd/container_patch.go
index 1857130b5..1bce84e06 100644
--- a/lxd/container_patch.go
+++ b/lxd/container_patch.go
@@ -60,7 +60,7 @@ func containerPatch(d *Daemon, r *http.Request) Response {
 	}
 
 	if req.Restore != "" {
-		return BadRequest(fmt.Errorf("Can't call PATCH in restore mode."))
+		return BadRequest(fmt.Errorf("Can't call PATCH in restore mode"))
 	}
 
 	// Check if architecture was passed
diff --git a/lxd/containers_post.go b/lxd/containers_post.go
index 985438977..26db45174 100644
--- a/lxd/containers_post.go
+++ b/lxd/containers_post.go
@@ -259,7 +259,7 @@ func createFromMigration(d *Daemon, req *api.ContainersPost) Response {
 		pools, err := d.cluster.StoragePools()
 		if err != nil {
 			if err == db.ErrNoSuchObject {
-				return BadRequest(fmt.Errorf("This LXD instance does not have any storage pools configured."))
+				return BadRequest(fmt.Errorf("This LXD instance does not have any storage pools configured"))
 			}
 			return SmartError(err)
 		}
@@ -332,7 +332,7 @@ func createFromMigration(d *Daemon, req *api.ContainersPost) Response {
 		}
 
 		if rootDiskDevice["pool"] == "" {
-			return BadRequest(fmt.Errorf("The container's root device is missing the pool property."))
+			return BadRequest(fmt.Errorf("The container's root device is missing the pool property"))
 		}
 
 		storagePool = rootDiskDevice["pool"]
@@ -663,7 +663,7 @@ func containersPost(d *Daemon, r *http.Request) Response {
 	// If no storage pool is found, error out.
 	pools, err := d.cluster.StoragePools()
 	if err != nil || len(pools) == 0 {
-		return BadRequest(fmt.Errorf("No storage pool found. Please create a new storage pool."))
+		return BadRequest(fmt.Errorf("No storage pool found. Please create a new storage pool"))
 	}
 
 	if req.Name == "" {
diff --git a/lxd/daemon_images.go b/lxd/daemon_images.go
index ad622b38a..ba70c76ba 100644
--- a/lxd/daemon_images.go
+++ b/lxd/daemon_images.go
@@ -196,7 +196,7 @@ func (d *Daemon) ImageDownload(op *operation, server string, protocol string, ce
 		} else if len(matches) > 1 {
 			return nil, fmt.Errorf("Provided partial image fingerprint matches more than one image")
 		} else {
-			return nil, fmt.Errorf("The requested image couldn't be found.")
+			return nil, fmt.Errorf("The requested image couldn't be found")
 		}
 	} else if protocol == "lxd" {
 		// Setup LXD client
diff --git a/lxd/images.go b/lxd/images.go
index ba1f2b554..c3dfbf27a 100644
--- a/lxd/images.go
+++ b/lxd/images.go
@@ -585,7 +585,7 @@ func getImgPostInfo(d *Daemon, r *http.Request, builddir string, post *os.File)
 // database and hence has already a storage volume in at least one storage pool.
 func imageCreateInPool(d *Daemon, info *api.Image, storagePool string) error {
 	if storagePool == "" {
-		return fmt.Errorf("No storage pool specified.")
+		return fmt.Errorf("No storage pool specified")
 	}
 
 	// Initialize a new storage interface.
@@ -771,7 +771,7 @@ func getImageMetadata(fname string) (*api.ImageMetadata, error) {
 	}
 
 	if metadata.CreationDate == 0 {
-		return nil, fmt.Errorf("Missing creation date.")
+		return nil, fmt.Errorf("Missing creation date")
 	}
 
 	return &metadata, nil
diff --git a/lxd/main_callhook.go b/lxd/main_callhook.go
index cf64860f4..a453798f3 100644
--- a/lxd/main_callhook.go
+++ b/lxd/main_callhook.go
@@ -98,7 +98,7 @@ func (c *cmdCallhook) Run(cmd *cobra.Command, args []string) error {
 	}
 
 	if target == "reboot" {
-		return fmt.Errorf("Reboot must be handled by LXD.")
+		return fmt.Errorf("Reboot must be handled by LXD")
 	}
 
 	return nil
diff --git a/lxd/migrate_container.go b/lxd/migrate_container.go
index d932dda50..2ec04d072 100644
--- a/lxd/migrate_container.go
+++ b/lxd/migrate_container.go
@@ -41,7 +41,7 @@ func NewMigrationSource(c container, stateful bool, containerOnly bool) (*migrat
 	if stateful && c.IsRunning() {
 		_, err := exec.LookPath("criu")
 		if err != nil {
-			return nil, fmt.Errorf("Unable to perform container live migration. CRIU isn't installed on the source server.")
+			return nil, fmt.Errorf("Unable to perform container live migration. CRIU isn't installed on the source server")
 		}
 
 		ret.live = true
@@ -706,9 +706,9 @@ func NewMigrationSink(args *MigrationSinkArgs) (*migrationSink, error) {
 
 	_, err = exec.LookPath("criu")
 	if sink.push && sink.dest.live && err != nil {
-		return nil, fmt.Errorf("Unable to perform container live migration. CRIU isn't installed on the destination server.")
+		return nil, fmt.Errorf("Unable to perform container live migration. CRIU isn't installed on the destination server")
 	} else if sink.src.live && err != nil {
-		return nil, fmt.Errorf("Unable to perform container live migration. CRIU isn't installed on the destination server.")
+		return nil, fmt.Errorf("Unable to perform container live migration. CRIU isn't installed on the destination server")
 	}
 
 	return &sink, nil
diff --git a/lxd/networks.go b/lxd/networks.go
index 79e937f53..f4406d05e 100644
--- a/lxd/networks.go
+++ b/lxd/networks.go
@@ -1698,7 +1698,7 @@ func (n *network) Start() error {
 		// Check for dnsmasq
 		_, err := exec.LookPath("dnsmasq")
 		if err != nil {
-			return fmt.Errorf("dnsmasq is required for LXD managed bridges.")
+			return fmt.Errorf("dnsmasq is required for LXD managed bridges")
 		}
 
 		// Start dnsmasq (occasionally races, try a few times)
diff --git a/lxd/patches.go b/lxd/patches.go
index 85dbaad43..bba4d9894 100644
--- a/lxd/patches.go
+++ b/lxd/patches.go
@@ -265,7 +265,7 @@ func patchStorageApi(name string, d *Daemon) error {
 		}
 		err = upgradeFromStorageTypeZfs(name, d, defaultPoolName, defaultStorageTypeName, cRegular, []string{}, imgPublic, imgPrivate)
 	default: // Shouldn't happen.
-		return fmt.Errorf("Invalid storage type. Upgrading not possible.")
+		return fmt.Errorf("Invalid storage type. Upgrading not possible")
 	}
 	if err != nil {
 		return err
@@ -2326,7 +2326,7 @@ func patchStorageApiDetectLVSize(name string, d *Daemon) error {
 		poolName := pool.Config["lvm.vg_name"]
 		if poolName == "" {
 			logger.Errorf("The \"lvm.vg_name\" key should not be empty")
-			return fmt.Errorf("The \"lvm.vg_name\" key should not be empty.")
+			return fmt.Errorf("The \"lvm.vg_name\" key should not be empty")
 		}
 
 		for _, volume := range volumes {
@@ -3039,7 +3039,7 @@ func patchUpdateFromV11(d *Daemon) error {
 
 	// Refuse to start lxd if a rsync failed.
 	if errors > 0 {
-		return fmt.Errorf("Got errors while moving snapshots, see the log output.")
+		return fmt.Errorf("Got errors while moving snapshots, see the log output")
 	}
 
 	return nil
diff --git a/lxd/profiles_utils.go b/lxd/profiles_utils.go
index c521a8e19..d1a3e1ed2 100644
--- a/lxd/profiles_utils.go
+++ b/lxd/profiles_utils.go
@@ -55,7 +55,7 @@ func doProfileUpdate(d *Daemon, name string, id int64, profile *api.Profile, req
 					// Found the profile
 					if profiles[i] == name {
 						// If it's the current profile, then we can't modify that root device
-						return fmt.Errorf("At least one container relies on this profile's root disk device.")
+						return fmt.Errorf("At least one container relies on this profile's root disk device")
 					} else {
 						// If it's not, then move on to the next container
 						break
diff --git a/lxd/proxy_device_utils.go b/lxd/proxy_device_utils.go
index 48f4ca571..960ed0728 100644
--- a/lxd/proxy_device_utils.go
+++ b/lxd/proxy_device_utils.go
@@ -56,7 +56,7 @@ func setupProxyProcInfo(c container, device map[string]string) (*proxyProcInfo,
 		listenPid = containerPid
 		connectPid = lxdPid
 	} else {
-		return nil, fmt.Errorf("Invalid binding side given. Must be \"host\" or \"container\".")
+		return nil, fmt.Errorf("Invalid binding side given. Must be \"host\" or \"container\"")
 	}
 
 	p := &proxyProcInfo{
diff --git a/shared/archive_linux.go b/shared/archive_linux.go
index 5419d38a8..6656d18e6 100644
--- a/shared/archive_linux.go
+++ b/shared/archive_linux.go
@@ -100,9 +100,9 @@ func Unpack(file string, path string, blockBackend bool, runningInUserns bool) e
 		// Check if we're running out of space
 		if int64(fs.Bfree) < int64(2*fs.Bsize) {
 			if blockBackend {
-				return fmt.Errorf("Unable to unpack image, run out of disk space (consider increasing your pool's volume.size).")
+				return fmt.Errorf("Unable to unpack image, run out of disk space (consider increasing your pool's volume.size)")
 			} else {
-				return fmt.Errorf("Unable to unpack image, run out of disk space.")
+				return fmt.Errorf("Unable to unpack image, run out of disk space")
 			}
 		}
 
diff --git a/shared/container.go b/shared/container.go
index e0e29f5bb..5fb1d1ab9 100644
--- a/shared/container.go
+++ b/shared/container.go
@@ -53,7 +53,7 @@ func IsPriority(value string) error {
 	}
 
 	if valueInt < 0 || valueInt > 10 {
-		return fmt.Errorf("Invalid value for a limit '%s'. Must be between 0 and 10.", value)
+		return fmt.Errorf("Invalid value for a limit '%s'. Must be between 0 and 10", value)
 	}
 
 	return nil
@@ -106,7 +106,7 @@ func GetRootDiskDevice(devices map[string]map[string]string) (string, map[string
 	for n, d := range devices {
 		if IsRootDiskDevice(d) {
 			if devName != "" {
-				return "", nil, fmt.Errorf("More than one root device found.")
+				return "", nil, fmt.Errorf("More than one root device found")
 			}
 
 			devName = n
@@ -118,7 +118,7 @@ func GetRootDiskDevice(devices map[string]map[string]string) (string, map[string
 		return devName, dev, nil
 	}
 
-	return "", nil, fmt.Errorf("No root device could be found.")
+	return "", nil, fmt.Errorf("No root device could be found")
 }
 
 // KnownContainerConfigKeys maps all fully defined, well-known config keys
diff --git a/shared/idmap/idmapset_linux.go b/shared/idmap/idmapset_linux.go
index ef4f28fea..8c6da8120 100644
--- a/shared/idmap/idmapset_linux.go
+++ b/shared/idmap/idmapset_linux.go
@@ -124,7 +124,7 @@ func (e *IdmapEntry) Usable() error {
 		}
 
 		if !valid {
-			return fmt.Errorf("The '%s' map can't work in the current user namespace.", e.ToLxcString())
+			return fmt.Errorf("The '%s' map can't work in the current user namespace", e.ToLxcString())
 		}
 	}
 
@@ -143,7 +143,7 @@ func (e *IdmapEntry) Usable() error {
 		}
 
 		if !valid {
-			return fmt.Errorf("The '%s' map can't work in the current user namespace.", e.ToLxcString())
+			return fmt.Errorf("The '%s' map can't work in the current user namespace", e.ToLxcString())
 		}
 	}
 
@@ -203,7 +203,7 @@ func (e *IdmapEntry) parse(s string) error {
 func (e *IdmapEntry) shift_into_ns(id int64) (int64, error) {
 	if id < e.Nsid || id >= e.Nsid+e.Maprange {
 		// this mapping doesn't apply
-		return 0, fmt.Errorf("ID mapping doesn't apply.")
+		return 0, fmt.Errorf("ID mapping doesn't apply")
 	}
 
 	return id - e.Nsid + e.Hostid, nil
@@ -216,7 +216,7 @@ func (e *IdmapEntry) shift_into_ns(id int64) (int64, error) {
 func (e *IdmapEntry) shift_from_ns(id int64) (int64, error) {
 	if id < e.Hostid || id >= e.Hostid+e.Maprange {
 		// this mapping doesn't apply
-		return 0, fmt.Errorf("ID mapping doesn't apply.")
+		return 0, fmt.Errorf("ID mapping doesn't apply")
 	}
 
 	return id - e.Hostid + e.Nsid, nil
@@ -601,7 +601,7 @@ func getFromShadow(fname string, username string) ([][]int64, error) {
 	}
 
 	if len(entries) == 0 {
-		return nil, fmt.Errorf("User %q has no %ss.", username, path.Base(fname))
+		return nil, fmt.Errorf("User %q has no %ss", username, path.Base(fname))
 	}
 
 	return entries, nil
diff --git a/shared/simplestreams/simplestreams.go b/shared/simplestreams/simplestreams.go
index 5edb78d7b..7969b6493 100644
--- a/shared/simplestreams/simplestreams.go
+++ b/shared/simplestreams/simplestreams.go
@@ -699,9 +699,9 @@ func (s *SimpleStreams) GetImage(fingerprint string) (*api.Image, error) {
 	}
 
 	if len(matches) == 0 {
-		return nil, fmt.Errorf("The requested image couldn't be found.")
+		return nil, fmt.Errorf("The requested image couldn't be found")
 	} else if len(matches) > 1 {
-		return nil, fmt.Errorf("More than one match for the provided partial fingerprint.")
+		return nil, fmt.Errorf("More than one match for the provided partial fingerprint")
 	}
 
 	return &matches[0], nil
@@ -709,7 +709,7 @@ func (s *SimpleStreams) GetImage(fingerprint string) (*api.Image, error) {
 
 func (s *SimpleStreams) ExportImage(image string, target string) (string, error) {
 	if !shared.IsDir(target) {
-		return "", fmt.Errorf("Split images can only be written to a directory.")
+		return "", fmt.Errorf("Split images can only be written to a directory")
 	}
 
 	files, err := s.GetFiles(image)
@@ -741,5 +741,5 @@ func (s *SimpleStreams) Download(image string, fileType string, target string, p
 		return s.downloadFile(file.Path, file.Sha256, target, progress)
 	}
 
-	return fmt.Errorf("The file couldn't be found.")
+	return fmt.Errorf("The file couldn't be found")
 }
diff --git a/shared/util.go b/shared/util.go
index 142e09564..c098b0d50 100644
--- a/shared/util.go
+++ b/shared/util.go
@@ -670,7 +670,7 @@ func TextEditor(inPath string, inContent []byte) ([]byte, error) {
 				}
 			}
 			if editor == "" {
-				return []byte{}, fmt.Errorf("No text editor found, please set the EDITOR environment variable.")
+				return []byte{}, fmt.Errorf("No text editor found, please set the EDITOR environment variable")
 			}
 		}
 	}
@@ -727,14 +727,14 @@ func ParseMetadata(metadata interface{}) (map[string]interface{}, error) {
 	if s.Kind() == reflect.Map {
 		for _, k := range s.MapKeys() {
 			if k.Kind() != reflect.String {
-				return nil, fmt.Errorf("Invalid metadata provided (key isn't a string).")
+				return nil, fmt.Errorf("Invalid metadata provided (key isn't a string)")
 			}
 			newMetadata[k.String()] = s.MapIndex(k).Interface()
 		}
 	} else if s.Kind() == reflect.Ptr && !s.Elem().IsValid() {
 		return nil, nil
 	} else {
-		return nil, fmt.Errorf("Invalid metadata provided (type isn't a map).")
+		return nil, fmt.Errorf("Invalid metadata provided (type isn't a map)")
 	}
 
 	return newMetadata, nil
diff --git a/shared/util_linux.go b/shared/util_linux.go
index a6582ba87..e16b91b5a 100644
--- a/shared/util_linux.go
+++ b/shared/util_linux.go
@@ -550,7 +550,7 @@ func llistxattr(path string, list []byte) (sz int, err error) {
 // GetAllXattr retrieves all extended attributes associated with a file,
 // directory or symbolic link.
 func GetAllXattr(path string) (xattrs map[string]string, err error) {
-	e1 := fmt.Errorf("Extended attributes changed during retrieval.")
+	e1 := fmt.Errorf("Extended attributes changed during retrieval")
 
 	// Call llistxattr() twice: First, to determine the size of the buffer
 	// we need to allocate to store the extended attributes, second, to
@@ -577,7 +577,7 @@ func GetAllXattr(path string) (xattrs map[string]string, err error) {
 
 	split := strings.Split(string(dest), "\x00")
 	if split == nil {
-		return nil, fmt.Errorf("No valid extended attribute key found.")
+		return nil, fmt.Errorf("No valid extended attribute key found")
 	}
 	// *listxattr functions return a list of  names  as  an unordered array
 	// of null-terminated character strings (attribute names are separated
@@ -795,7 +795,7 @@ func ExecReaderToChannel(r io.Reader, bufferSize int, exited <-chan bool, fd int
 	return ch
 }
 
-var ObjectFound = fmt.Errorf("Found requested object.")
+var ObjectFound = fmt.Errorf("Found requested object")
 
 func LookupUUIDByBlockDevPath(diskDevice string) (string, error) {
 	uuid := ""
@@ -826,11 +826,11 @@ func LookupUUIDByBlockDevPath(diskDevice string) (string, error) {
 
 	err := filepath.Walk("/dev/disk/by-uuid", readUUID)
 	if err != nil && err != ObjectFound {
-		return "", fmt.Errorf("Failed to detect UUID: %s.", err)
+		return "", fmt.Errorf("Failed to detect UUID: %s", err)
 	}
 
 	if uuid == "" {
-		return "", fmt.Errorf("Failed to detect UUID.")
+		return "", fmt.Errorf("Failed to detect UUID")
 	}
 
 	lastSlash := strings.LastIndex(uuid, "/")

From d65ea4c267fc6d49169abe34976d608cbcecdb77 Mon Sep 17 00:00:00 2001
From: Thomas Hipp <thomas.hipp at canonical.com>
Date: Fri, 27 Jul 2018 10:03:08 +0200
Subject: [PATCH 2/2] po: Update translations

Signed-off-by: Thomas Hipp <thomas.hipp at canonical.com>
---
 po/de.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/el.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/es.po      | 117 +++++++++++++++++++++++++++---------------------------
 po/fa.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/fi.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/fr.po      | 122 +++++++++++++++++++++++++++++---------------------------
 po/hi.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/id.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/it.po      | 116 ++++++++++++++++++++++++++---------------------------
 po/ja.po      | 125 +++++++++++++++++++++++++++++++---------------------------
 po/ko.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/lxd.pot    |  30 +++++++-------
 po/nb_NO.po   | 114 ++++++++++++++++++++++++++--------------------------
 po/nl.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/pa.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/pl.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/pt_BR.po   | 114 ++++++++++++++++++++++++++--------------------------
 po/ru.po      | 121 ++++++++++++++++++++++++++++----------------------------
 po/sr.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/sv.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/tr.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/uk.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/zh.po      | 114 ++++++++++++++++++++++++++--------------------------
 po/zh_Hans.po | 114 ++++++++++++++++++++++++++--------------------------
 24 files changed, 1350 insertions(+), 1333 deletions(-)

diff --git a/po/de.po b/po/de.po
index e33724370..be7ea78e2 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: 2018-06-05 04:58+0000\n"
 "Last-Translator: Krombel <krombel at krombel.de>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -270,14 +270,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -735,7 +735,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr "BESCHREIBUNG"
@@ -794,48 +794,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -1046,7 +1047,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr "FINGERABDRUCK"
 
@@ -1747,7 +1748,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1847,7 +1848,7 @@ msgstr "Kein Zertifikat für diese Verbindung"
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
 #, fuzzy
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr "Kein Zertifikat für diese Verbindung"
 
 #: lxc/storage_volume.go:323
@@ -1864,7 +1865,7 @@ msgid "No value found in %q"
 msgstr "kein Wert in %q gefunden\n"
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1872,11 +1873,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2532,13 +2533,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2725,8 +2726,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/el.po b/po/el.po
index 3ed6b84ef..b065cdcd0 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\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/"
@@ -163,14 +163,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -386,7 +386,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -605,7 +605,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -661,48 +661,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -905,7 +906,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1562,7 +1563,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1654,7 +1655,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1671,7 +1672,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1679,11 +1680,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2307,13 +2308,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2491,8 +2492,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/es.po b/po/es.po
index 17c3c402a..7b6d569cc 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: 2018-02-10 11:39+0000\n"
 "Last-Translator: Allan Esquivel Sibaja <allan.esquivel.sibaja at gmail.com>\n"
 "Language-Team: Spanish <https://hosted.weblate.org/projects/linux-containers/"
@@ -219,15 +219,15 @@ msgid "%v (interrupt two more times to force)"
 msgstr "%v (interrumpe dos o más tiempos a la fuerza)"
 
 #: lxc/file.go:641
-#, c-format
-msgid "'%s' isn't a supported file type."
+#, fuzzy, c-format
+msgid "'%s' isn't a supported file type"
 msgstr "%s no es un tipo de archivo soportado."
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr "(ninguno)"
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -443,7 +443,8 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+#, fuzzy
+msgid "Can't specify a different remote for rename"
 msgstr "No se puede especificar un remote diferente para renombrar."
 
 #: lxc/list.go:478
@@ -663,7 +664,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -719,48 +720,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -964,7 +966,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1624,7 +1626,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1715,7 +1717,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1732,7 +1734,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1740,11 +1742,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2368,13 +2370,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2552,8 +2554,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/fa.po b/po/fa.po
index 985dbd277..b1ab95cc5 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/fi.po b/po/fi.po
index 591379301..3a4658424 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/fr.po b/po/fr.po
index 64e3e4f86..8a8d555ba 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: 2018-03-06 13:50+0000\n"
 "Last-Translator: Alban Vidal <alban.vidal at zordhak.fr>\n"
 "Language-Team: French <https://hosted.weblate.org/projects/linux-containers/"
@@ -258,15 +258,15 @@ msgid "%v (interrupt two more times to force)"
 msgstr "%v (interrompre encore deux fois pour forcer)"
 
 #: lxc/file.go:641
-#, c-format
-msgid "'%s' isn't a supported file type."
+#, fuzzy, c-format
+msgid "'%s' isn't a supported file type"
 msgstr "'%s' n'est pas un format de fichier pris en charge."
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr "(aucun)"
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -490,7 +490,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -743,7 +743,7 @@ msgstr "Création du conteneur"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
@@ -803,48 +803,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -1062,7 +1063,7 @@ msgstr "Import de l'image : %s"
 msgid "FILENAME"
 msgstr "NOM"
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr "EMPREINTE"
 
@@ -1815,7 +1816,8 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+#, 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."
 
 #: lxc/file.go:224
@@ -1914,7 +1916,7 @@ msgstr "Aucun périphérique existant pour ce réseau"
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
 #, fuzzy
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr "Aucun périphérique existant pour ce réseau"
 
 #: lxc/storage_volume.go:323
@@ -1931,7 +1933,8 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+#, fuzzy
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 "Seuls les volumes \"personnalisés\" peuvent être attachés aux conteneurs."
 
@@ -1940,11 +1943,13 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr "Seules les URLs https sont supportées par simplestreams"
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+#, fuzzy
+msgid "Only https:// is supported for remote image import"
 msgstr "Seul https:// est supporté par l'import d'images distantes."
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+#, 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:83
@@ -2611,14 +2616,16 @@ msgid "TYPE"
 msgstr "TYPE"
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+#, fuzzy
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 "Le conteneur est en cours d'exécution, l'arrêter d'abord ou ajouter --force."
 
 #: lxc/publish.go:109
+#, fuzzy
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 "Le conteneur est en cours d'exécution. Utiliser --force pour qu'il soit "
 "arrêté et redémarré."
@@ -2811,8 +2818,7 @@ msgstr "L'utilisateur a annulé l'opération de suppression."
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/hi.po b/po/hi.po
index 206eeea62..28a159849 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/id.po b/po/id.po
index a5114ed9e..54a759175 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/it.po b/po/it.po
index e744a6db5..038872d74 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\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/"
@@ -184,15 +184,15 @@ msgid "%v (interrupt two more times to force)"
 msgstr "%v (interrompi altre due volte per forzare)"
 
 #: lxc/file.go:641
-#, c-format
-msgid "'%s' isn't a supported file type."
+#, fuzzy, c-format
+msgid "'%s' isn't a supported file type"
 msgstr "'%s' non è un tipo di file supportato."
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr "(nessuno)"
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr "ALIAS"
 
@@ -409,7 +409,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -630,7 +630,7 @@ msgstr "Creazione del container in corso"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr "DESCRIZIONE"
@@ -686,48 +686,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -931,7 +932,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1596,7 +1597,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1687,7 +1688,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1704,7 +1705,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1712,11 +1713,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2344,13 +2345,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2530,8 +2531,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/ja.po b/po/ja.po
index d0831ee59..3ae2b62be 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: 2018-05-16 23:39+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -163,15 +163,15 @@ msgstr ""
 "%v (強制的に中断したい場合はあと2回Ctrl-Cを入力/SIGINTを送出してください)"
 
 #: lxc/file.go:641
-#, c-format
-msgid "'%s' isn't a supported file type."
+#, fuzzy, c-format
+msgid "'%s' isn't a supported file type"
 msgstr "'%s' はサポートされないタイプのファイルです。"
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -392,7 +392,8 @@ msgid "Can't specify --fast with --columns"
 msgstr "--fast と --columns は同時に指定できません"
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+#, fuzzy
+msgid "Can't specify a different remote for rename"
 msgstr "リネームの場合は異なるリモートを指定できません。"
 
 #: lxc/list.go:478
@@ -625,7 +626,7 @@ msgstr "コンテナを作成中"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -681,48 +682,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr "説明"
 
@@ -939,7 +941,7 @@ msgstr "イメージのエクスポート中: %s"
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1703,7 +1705,8 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+#, fuzzy
+msgid "More than one device matches, specify the device name"
 msgstr "複数のデバイスとマッチします。デバイス名を指定してください。"
 
 #: lxc/file.go:224
@@ -1797,7 +1800,8 @@ msgid "No device found for this network"
 msgstr "このネットワークに対するデバイスがありません"
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+#, fuzzy
+msgid "No device found for this storage volume"
 msgstr "このストレージボリュームに対するデバイスがありません。"
 
 #: lxc/storage_volume.go:323
@@ -1814,7 +1818,8 @@ msgid "No value found in %q"
 msgstr "%q に設定する値が指定されていません"
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+#, fuzzy
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr "\"カスタム\" のボリュームのみがコンテナにアタッチできます。"
 
 #: lxc/remote.go:149
@@ -1822,11 +1827,13 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr "simplestreams は https の URL のみサポートします"
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+#, fuzzy
+msgid "Only https:// is supported for remote image import"
 msgstr "リモートイメージのインポートは https:// のみをサポートします。"
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+#, fuzzy
+msgid "Only managed networks can be modified"
 msgstr "管理対象のネットワークのみ変更できます。"
 
 #: lxc/operation.go:83
@@ -2457,13 +2464,15 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+#, fuzzy
+msgid "The container is currently running, stop it first or pass --force"
 msgstr "コンテナは実行中です。先に停止させるか、--force を指定してください。"
 
 #: lxc/publish.go:109
+#, fuzzy
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 "コンテナは現在実行中です。停止して、再起動するために --force を使用してくだ\n"
 "さい。"
@@ -2653,9 +2662,9 @@ msgid "User aborted delete operation"
 msgstr "ユーザが削除操作を中断しました"
 
 #: lxc/utils/cancel.go:40
+#, fuzzy
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 "ユーザからのシグナルを 3 度受信したので exit しました。リモート操作は実行し続"
 "けます。"
diff --git a/po/ko.po b/po/ko.po
index 904032538..ab82feb12 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/lxd.pot b/po/lxd.pot
index 5575bcd89..895860f87 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: 2018-07-26 01:15-0400\n"
+        "POT-Creation-Date: 2018-07-27 09:29+0200\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"
@@ -153,14 +153,14 @@ msgstr  ""
 
 #: lxc/file.go:641
 #, c-format
-msgid   "'%s' isn't a supported file type."
+msgid   "'%s' isn't a supported file type"
 msgstr  ""
 
 #: lxc/profile.go:222
 msgid   "(none)"
 msgstr  ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid   "ALIAS"
 msgstr  ""
 
@@ -372,7 +372,7 @@ msgid   "Can't specify --fast with --columns"
 msgstr  ""
 
 #: lxc/rename.go:51
-msgid   "Can't specify a different remote for rename."
+msgid   "Can't specify a different remote for rename"
 msgstr  ""
 
 #: lxc/list.go:478
@@ -578,7 +578,7 @@ msgstr  ""
 msgid   "DATABASE"
 msgstr  ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856 lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856 lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid   "DESCRIPTION"
 msgstr  ""
 
@@ -630,7 +630,7 @@ msgstr  ""
 msgid   "Delete storage volumes"
 msgstr  ""
 
-#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:23 lxc/alias.go:55 lxc/alias.go:99 lxc/alias.go:147 lxc/alias.go:198 lxc/cluster.go:27 lxc/cluster.go:64 lxc/cluster.go:147 lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452 lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185 lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122 lxc/storage_volume.go:201 lxc/storage_volume.go:283 lxc/storage_volume.go:412 lxc/storage_volume.go:487 lxc/storage_volume.go:547 lxc/storage_volume.go:629 lxc/storage_volume.go:710 lxc/storage_volume.go:839 lxc/storage_volume.go:904 lxc/storage_volume.go:980 lxc/storage_volume.go:1011 lxc/storage_volume.go:1075 lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:23 lxc/alias.go:55 lxc/alias.go:99 lxc/alias.go:147 lxc/alias.go:198 lxc/cluster.go:27 lxc/cluster.go:64 lxc/cluster.go:147 lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650 lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122 lxc/storage_volume.go:201 lxc/storage_volume.go:283 lxc/storage_volume.go:412 lxc/storage_volume.go:487 lxc/storage_volume.go:547 lxc/storage_volume.go:629 lxc/storage_volume.go:710 lxc/storage_volume.go:839 lxc/storage_volume.go:904 lxc/storage_volume.go:980 lxc/storage_volume.go:1011 lxc/storage_volume.go:1075 lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
 msgid   "Description"
 msgstr  ""
 
@@ -825,7 +825,7 @@ msgstr  ""
 msgid   "FILENAME"
 msgstr  ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid   "FINGERPRINT"
 msgstr  ""
 
@@ -1450,7 +1450,7 @@ msgid   "Monitor a local or remote LXD server\n"
 msgstr  ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591 lxc/storage_volume.go:672
-msgid   "More than one device matches, specify the device name."
+msgid   "More than one device matches, specify the device name"
 msgstr  ""
 
 #: lxc/file.go:224
@@ -1540,7 +1540,7 @@ msgid   "No device found for this network"
 msgstr  ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid   "No device found for this storage volume."
+msgid   "No device found for this storage volume"
 msgstr  ""
 
 #: lxc/storage_volume.go:323
@@ -1557,7 +1557,7 @@ msgid   "No value found in %q"
 msgstr  ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid   "Only \"custom\" volumes can be attached to containers."
+msgid   "Only \"custom\" volumes can be attached to containers"
 msgstr  ""
 
 #: lxc/remote.go:149
@@ -1565,11 +1565,11 @@ msgid   "Only https URLs are supported for simplestreams"
 msgstr  ""
 
 #: lxc/image.go:657
-msgid   "Only https:// is supported for remote image import."
+msgid   "Only https:// is supported for remote image import"
 msgstr  ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid   "Only managed networks can be modified."
+msgid   "Only managed networks can be modified"
 msgstr  ""
 
 #: lxc/operation.go:83
@@ -2187,11 +2187,11 @@ msgid   "TYPE"
 msgstr  ""
 
 #: lxc/delete.go:104
-msgid   "The container is currently running, stop it first or pass --force."
+msgid   "The container is currently running, stop it first or pass --force"
 msgstr  ""
 
 #: lxc/publish.go:109
-msgid   "The container is currently running. Use --force to have it stopped and restarted."
+msgid   "The container is currently running. Use --force to have it stopped and restarted"
 msgstr  ""
 
 #: lxc/init.go:281
@@ -2364,7 +2364,7 @@ msgid   "User aborted delete operation"
 msgstr  ""
 
 #: lxc/utils/cancel.go:40
-msgid   "User signaled us three times, exiting. The remote operation will keep running."
+msgid   "User signaled us three times, exiting. The remote operation will keep running"
 msgstr  ""
 
 #: lxc/query.go:38
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 3edae04ac..5785e0ed4 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/nl.po b/po/nl.po
index 34a84b352..94e8c94f2 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/pa.po b/po/pa.po
index 4e8375424..3d30746c2 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/pl.po b/po/pl.po
index a501c76be..44d44fc39 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 492b7bc3a..791fead5d 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: 2018-03-08 09:21+0000\n"
 "Last-Translator: Paulo Coghi <paulo at coghi.com.br>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -177,14 +177,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -399,7 +399,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -618,7 +618,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -674,48 +674,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -917,7 +918,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1573,7 +1574,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1664,7 +1665,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1681,7 +1682,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1689,11 +1690,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2317,13 +2318,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2501,8 +2502,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/ru.po b/po/ru.po
index ac59f4d25..50eccd5db 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: 2018-06-21 16:21-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\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/"
@@ -16,8 +16,8 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
-"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.1-dev\n"
 
 #: lxc/storage.go:220
@@ -252,14 +252,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr "(пусто)"
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr "ПСЕВДОНИМ"
 
@@ -478,7 +478,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -703,7 +703,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -762,48 +762,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -1010,7 +1011,7 @@ msgstr "Копирование образа: %s"
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1678,7 +1679,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1771,8 +1772,9 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
-msgstr ""
+#, fuzzy
+msgid "No device found for this storage volume"
+msgstr "Копирование образа: %s"
 
 #: lxc/storage_volume.go:323
 msgid "No storage pool for source volume specified"
@@ -1788,7 +1790,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1796,11 +1798,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2432,13 +2434,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2616,8 +2618,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/sr.po b/po/sr.po
index f506b1a3e..f4b5a584e 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/sv.po b/po/sv.po
index 6f2974e93..a48502ea8 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/tr.po b/po/tr.po
index a00f42aac..b9f4852a6 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/uk.po b/po/uk.po
index 963e6a871..1d7e35f76 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/zh.po b/po/zh.po
index 09ff1741c..e58a4427e 100644
--- a/po/zh.po
+++ b/po/zh.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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index 626396436..fec7771fb 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: 2018-07-25 13:01-0400\n"
+"POT-Creation-Date: 2018-07-27 09:29+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,14 +160,14 @@ msgstr ""
 
 #: lxc/file.go:641
 #, c-format
-msgid "'%s' isn't a supported file type."
+msgid "'%s' isn't a supported file type"
 msgstr ""
 
 #: lxc/profile.go:222
 msgid "(none)"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:920 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image_alias.go:228 lxc/image.go:920
 msgid "ALIAS"
 msgstr ""
 
@@ -382,7 +382,7 @@ msgid "Can't specify --fast with --columns"
 msgstr ""
 
 #: lxc/rename.go:51
-msgid "Can't specify a different remote for rename."
+msgid "Can't specify a different remote for rename"
 msgstr ""
 
 #: lxc/list.go:478
@@ -601,7 +601,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:924 lxc/image_alias.go:230 lxc/list.go:451 lxc/network.go:856
+#: lxc/image_alias.go:230 lxc/image.go:924 lxc/list.go:451 lxc/network.go:856
 #: lxc/operation.go:153 lxc/storage.go:545 lxc/storage_volume.go:953
 msgid "DESCRIPTION"
 msgstr ""
@@ -657,48 +657,49 @@ 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:27 lxc/cluster.go:64 lxc/cluster.go:147
-#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289 lxc/config.go:29
-#: lxc/config.go:88 lxc/config.go:289 lxc/config.go:355 lxc/config.go:452
-#: lxc/config.go:560 lxc/config_device.go:24 lxc/config_device.go:76
-#: lxc/config_device.go:179 lxc/config_device.go:252 lxc/config_device.go:318
-#: lxc/config_device.go:405 lxc/config_device.go:493 lxc/config_device.go:582
-#: lxc/config_device.go:650 lxc/config_metadata.go:29 lxc/config_metadata.go:54
-#: lxc/config_metadata.go:176 lxc/config_template.go:30
-#: lxc/config_template.go:67 lxc/config_template.go:110
-#: lxc/config_template.go:152 lxc/config_template.go:236
-#: lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59
-#: lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32
-#: lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30
-#: lxc/file.go:40 lxc/file.go:73 lxc/file.go:122 lxc/file.go:185
-#: lxc/file.go:352 lxc/image.go:42 lxc/image.go:131 lxc/image.go:261
-#: lxc/image.go:312 lxc/image.go:435 lxc/image.go:571 lxc/image.go:775
-#: lxc/image.go:889 lxc/image.go:1211 lxc/image.go:1284 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:22 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
-#: lxc/network.go:183 lxc/network.go:256 lxc/network.go:326 lxc/network.go:373
-#: lxc/network.go:458 lxc/network.go:543 lxc/network.go:666 lxc/network.go:724
-#: lxc/network.go:794 lxc/network.go:914 lxc/network.go:979 lxc/network.go:1026
-#: lxc/network.go:1095 lxc/network.go:1157 lxc/operation.go:25
-#: lxc/operation.go:54 lxc/operation.go:98 lxc/operation.go:174
-#: lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163 lxc/profile.go:241
-#: lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396 lxc/profile.go:520
-#: lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705 lxc/profile.go:753
-#: lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383 lxc/remote.go:419
-#: lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635 lxc/remote.go:673
-#: lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33
-#: lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208 lxc/storage.go:328
-#: lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573 lxc/storage.go:645
-#: lxc/storage.go:729 lxc/storage_volume.go:34 lxc/storage_volume.go:122
-#: lxc/storage_volume.go:201 lxc/storage_volume.go:283
-#: lxc/storage_volume.go:412 lxc/storage_volume.go:487
-#: lxc/storage_volume.go:547 lxc/storage_volume.go:629
-#: lxc/storage_volume.go:710 lxc/storage_volume.go:839
-#: lxc/storage_volume.go:904 lxc/storage_volume.go:980
-#: lxc/storage_volume.go:1011 lxc/storage_volume.go:1075
-#: lxc/storage_volume.go:1152 lxc/storage_volume.go:1227 lxc/version.go:22
+#: lxc/cluster.go:197 lxc/cluster.go:243 lxc/cluster.go:289
+#: lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:179
+#: lxc/config_device.go:252 lxc/config_device.go:318 lxc/config_device.go:405
+#: lxc/config_device.go:493 lxc/config_device.go:582 lxc/config_device.go:650
+#: lxc/config.go:29 lxc/config.go:88 lxc/config.go:289 lxc/config.go:355
+#: lxc/config.go:452 lxc/config.go:560 lxc/config_metadata.go:29
+#: lxc/config_metadata.go:54 lxc/config_metadata.go:176
+#: lxc/config_template.go:30 lxc/config_template.go:67
+#: lxc/config_template.go:110 lxc/config_template.go:152
+#: lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30
+#: lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197
+#: lxc/console.go:32 lxc/copy.go:37 lxc/delete.go:30 lxc/exec.go:39
+#: lxc/export.go:30 lxc/file.go:40 lxc/file.go:73 lxc/file.go:122
+#: lxc/file.go:185 lxc/file.go:352 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/image.go:42 lxc/image.go:131 lxc/image.go:261 lxc/image.go:312
+#: lxc/image.go:435 lxc/image.go:571 lxc/image.go:775 lxc/image.go:889
+#: lxc/image.go:1211 lxc/image.go:1284 lxc/import.go:22 lxc/info.go:29
+#: lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:46
+#: lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34
+#: lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:326
+#: lxc/network.go:373 lxc/network.go:458 lxc/network.go:543 lxc/network.go:666
+#: lxc/network.go:724 lxc/network.go:794 lxc/network.go:914 lxc/network.go:979
+#: lxc/network.go:1026 lxc/network.go:1095 lxc/network.go:1157
+#: lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:98
+#: lxc/operation.go:174 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:163
+#: lxc/profile.go:241 lxc/profile.go:297 lxc/profile.go:348 lxc/profile.go:396
+#: lxc/profile.go:520 lxc/profile.go:568 lxc/profile.go:632 lxc/profile.go:705
+#: lxc/profile.go:753 lxc/profile.go:812 lxc/profile.go:866 lxc/publish.go:34
+#: lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:87 lxc/remote.go:383
+#: lxc/remote.go:419 lxc/remote.go:524 lxc/remote.go:586 lxc/remote.go:635
+#: lxc/remote.go:673 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21
+#: lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:161 lxc/storage.go:208
+#: lxc/storage.go:328 lxc/storage.go:383 lxc/storage.go:491 lxc/storage.go:573
+#: lxc/storage.go:645 lxc/storage.go:729 lxc/storage_volume.go:34
+#: lxc/storage_volume.go:122 lxc/storage_volume.go:201
+#: lxc/storage_volume.go:283 lxc/storage_volume.go:412
+#: lxc/storage_volume.go:487 lxc/storage_volume.go:547
+#: lxc/storage_volume.go:629 lxc/storage_volume.go:710
+#: lxc/storage_volume.go:839 lxc/storage_volume.go:904
+#: lxc/storage_volume.go:980 lxc/storage_volume.go:1011
+#: lxc/storage_volume.go:1075 lxc/storage_volume.go:1152
+#: lxc/storage_volume.go:1227 lxc/version.go:22
 msgid "Description"
 msgstr ""
 
@@ -900,7 +901,7 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:922 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image_alias.go:229 lxc/image.go:922
 msgid "FINGERPRINT"
 msgstr ""
 
@@ -1556,7 +1557,7 @@ msgstr ""
 
 #: lxc/network.go:417 lxc/network.go:502 lxc/storage_volume.go:591
 #: lxc/storage_volume.go:672
-msgid "More than one device matches, specify the device name."
+msgid "More than one device matches, specify the device name"
 msgstr ""
 
 #: lxc/file.go:224
@@ -1647,7 +1648,7 @@ msgid "No device found for this network"
 msgstr ""
 
 #: lxc/storage_volume.go:600 lxc/storage_volume.go:681
-msgid "No device found for this storage volume."
+msgid "No device found for this storage volume"
 msgstr ""
 
 #: lxc/storage_volume.go:323
@@ -1664,7 +1665,7 @@ msgid "No value found in %q"
 msgstr ""
 
 #: lxc/storage_volume.go:164 lxc/storage_volume.go:243
-msgid "Only \"custom\" volumes can be attached to containers."
+msgid "Only \"custom\" volumes can be attached to containers"
 msgstr ""
 
 #: lxc/remote.go:149
@@ -1672,11 +1673,11 @@ msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
 #: lxc/image.go:657
-msgid "Only https:// is supported for remote image import."
+msgid "Only https:// is supported for remote image import"
 msgstr ""
 
 #: lxc/network.go:613 lxc/network.go:1066
-msgid "Only managed networks can be modified."
+msgid "Only managed networks can be modified"
 msgstr ""
 
 #: lxc/operation.go:83
@@ -2300,13 +2301,13 @@ msgid "TYPE"
 msgstr ""
 
 #: lxc/delete.go:104
-msgid "The container is currently running, stop it first or pass --force."
+msgid "The container is currently running, stop it first or pass --force"
 msgstr ""
 
 #: lxc/publish.go:109
 msgid ""
 "The container is currently running. Use --force to have it stopped and "
-"restarted."
+"restarted"
 msgstr ""
 
 #: lxc/init.go:281
@@ -2484,8 +2485,7 @@ msgstr ""
 
 #: lxc/utils/cancel.go:40
 msgid ""
-"User signaled us three times, exiting. The remote operation will keep "
-"running."
+"User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
 #: lxc/query.go:38


More information about the lxc-devel mailing list