[lxc-devel] [lxd/master] Add copy/move between projects & --project option to CLI

stgraber on Github lxc-bot at linuxcontainers.org
Tue Nov 20 22:47:06 UTC 2018


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 301 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20181120/b44b7774/attachment.bin>
-------------- next part --------------
From 430e012bb8bf7d07b4991a89175f6271d9443b8a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 12:29:07 -0500
Subject: [PATCH 01/11] lxc/config: Allow overriding the current project
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 lxc/config/config.go |  3 +++
 lxc/config/remote.go | 16 ++++++++++++++++
 2 files changed, 19 insertions(+)

diff --git a/lxc/config/config.go b/lxc/config/config.go
index 6fd6aedca6..2c77df6523 100644
--- a/lxc/config/config.go
+++ b/lxc/config/config.go
@@ -30,6 +30,9 @@ type Config struct {
 	// PromptPassword is a helper function used when encountering an encrypted key
 	PromptPassword func(filename string) (string, error) `yaml:"-"`
 
+	// ProjectOverride allows overriding the default project for container queries
+	ProjectOverride string `yaml:"-"`
+
 	authInteractor []httpbakery.Interactor
 
 	cookiejar *cookiejar.Jar
diff --git a/lxc/config/remote.go b/lxc/config/remote.go
index 68dba0dbda..39e3d20a36 100644
--- a/lxc/config/remote.go
+++ b/lxc/config/remote.go
@@ -71,6 +71,10 @@ func (c *Config) GetContainerServer(name string) (lxd.ContainerServer, error) {
 			d = d.UseProject(remote.Project)
 		}
 
+		if c.ProjectOverride != "" {
+			d = d.UseProject(c.ProjectOverride)
+		}
+
 		return d, nil
 	}
 
@@ -88,6 +92,10 @@ func (c *Config) GetContainerServer(name string) (lxd.ContainerServer, error) {
 		d = d.UseProject(remote.Project)
 	}
 
+	if c.ProjectOverride != "" {
+		d = d.UseProject(c.ProjectOverride)
+	}
+
 	return d, nil
 }
 
@@ -116,6 +124,10 @@ func (c *Config) GetImageServer(name string) (lxd.ImageServer, error) {
 			d = d.UseProject(remote.Project)
 		}
 
+		if c.ProjectOverride != "" {
+			d = d.UseProject(c.ProjectOverride)
+		}
+
 		return d, nil
 	}
 
@@ -149,6 +161,10 @@ func (c *Config) GetImageServer(name string) (lxd.ImageServer, error) {
 		d = d.UseProject(remote.Project)
 	}
 
+	if c.ProjectOverride != "" {
+		d = d.UseProject(c.ProjectOverride)
+	}
+
 	return d, nil
 }
 

From 28850dcf2ddf031e196964141467a0b094917171 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 12:29:13 -0500
Subject: [PATCH 02/11] lxc: Allow overriding the current project
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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

diff --git a/lxc/main.go b/lxc/main.go
index 7a2e6e9274..c42ee186be 100644
--- a/lxc/main.go
+++ b/lxc/main.go
@@ -33,6 +33,7 @@ type cmdGlobal struct {
 	flagHelpAll    bool
 	flagLogDebug   bool
 	flagLogVerbose bool
+	flagProject    string
 	flagQuiet      bool
 	flagVersion    bool
 }
@@ -57,6 +58,7 @@ For help with any of those, simply call them with --help.`))
 	app.PersistentFlags().BoolVar(&globalCmd.flagVersion, "version", false, i18n.G("Print version number"))
 	app.PersistentFlags().BoolVarP(&globalCmd.flagHelp, "help", "h", false, i18n.G("Print help"))
 	app.PersistentFlags().BoolVar(&globalCmd.flagForceLocal, "force-local", false, i18n.G("Force using the local unix socket"))
+	app.PersistentFlags().StringVar(&globalCmd.flagProject, "project", "", i18n.G("Override the source project"))
 	app.PersistentFlags().BoolVar(&globalCmd.flagLogDebug, "debug", false, i18n.G("Show all debug messages"))
 	app.PersistentFlags().BoolVarP(&globalCmd.flagLogVerbose, "verbose", "v", false, i18n.G("Show all information messages"))
 	app.PersistentFlags().BoolVarP(&globalCmd.flagQuiet, "quiet", "q", false, i18n.G("Don't show progress information"))
@@ -274,6 +276,11 @@ func (c *cmdGlobal) PreRun(cmd *cobra.Command, args []string) error {
 		c.conf = config.NewConfig(filepath.Dir(c.confPath), true)
 	}
 
+	// Override the project
+	if c.flagProject != "" {
+		c.conf.ProjectOverride = c.flagProject
+	}
+
 	// Setup password helper
 	c.conf.PromptPassword = func(filename string) (string, error) {
 		return cli.AskPasswordOnce(fmt.Sprintf(i18n.G("Password for %s: "), filename)), nil

From 91364582363e301df6f73f012fbffce50e040cc7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 15:51:03 -0500
Subject: [PATCH 03/11] lxd/containers: Hide duplicate log entries
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 lxd/container.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lxd/container.go b/lxd/container.go
index de67f99a03..efab279ddc 100644
--- a/lxd/container.go
+++ b/lxd/container.go
@@ -1576,8 +1576,6 @@ func autoCreateContainerSnapshotsTask(d *Daemon) (task.Func, task.Schedule) {
 }
 
 func autoCreateContainerSnapshots(ctx context.Context, d *Daemon) error {
-	logger.Info("Creating scheduled container snapshots")
-
 	containers, err := d.cluster.ContainersNodeList(db.CTypeRegular)
 	if err != nil {
 		return errors.Wrap(err, "Unable to retrieve the list of containers")

From 3dbb4126d2040c305c62b243ba465d5a36041d14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 17:18:25 -0500
Subject: [PATCH 04/11] lxd/storage: Fix more project copy issues

---
 lxd/storage_btrfs.go | 2 +-
 lxd/storage_zfs.go   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lxd/storage_btrfs.go b/lxd/storage_btrfs.go
index 63e8d999b5..bd710bf4fc 100644
--- a/lxd/storage_btrfs.go
+++ b/lxd/storage_btrfs.go
@@ -1205,7 +1205,7 @@ func (s *storageBtrfs) ContainerCopy(target container, source container, contain
 
 		_, snapOnlyName, _ := containerGetParentAndSnapshotName(snap.Name())
 		newSnapName := fmt.Sprintf("%s/%s", target.Name(), snapOnlyName)
-		targetSnapshot, err := containerLoadByProjectAndName(s.s, source.Project(), newSnapName)
+		targetSnapshot, err := containerLoadByProjectAndName(s.s, target.Project(), newSnapName)
 		if err != nil {
 			return err
 		}
diff --git a/lxd/storage_zfs.go b/lxd/storage_zfs.go
index d949d9493d..d10935b5ed 100644
--- a/lxd/storage_zfs.go
+++ b/lxd/storage_zfs.go
@@ -1352,7 +1352,7 @@ func (s *storageZfs) ContainerCopy(target container, source container, container
 			_, snapOnlyName, _ := containerGetParentAndSnapshotName(snap.Name())
 			prevSnapOnlyName = snapOnlyName
 			newSnapName := fmt.Sprintf("%s/%s", target.Name(), snapOnlyName)
-			targetSnapshot, err := containerLoadByProjectAndName(s.s, source.Project(), newSnapName)
+			targetSnapshot, err := containerLoadByProjectAndName(s.s, target.Project(), newSnapName)
 			if err != nil {
 				return err
 			}

From ecb021b44b8ede8b6d05fb697d6ec9bb7e9d27db Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 17:19:43 -0500
Subject: [PATCH 05/11] shared/api: Support copy between projects

---
 shared/api/container.go | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/shared/api/container.go b/shared/api/container.go
index 93439ed394..ed41a6e61e 100644
--- a/shared/api/container.go
+++ b/shared/api/container.go
@@ -135,4 +135,7 @@ type ContainerSource struct {
 
 	// API extension: container_incremental_copy
 	Refresh bool `json:"refresh,omitempty" yaml:"refresh,omitempty"`
+
+	// API extension: container_copy_project
+	Project string `json:"project,omitempty" yaml:"project,omitempty"`
 }

From 578800dc2f2e82ef1b898434337fba2d17a60283 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 17:20:23 -0500
Subject: [PATCH 06/11] client: Support copy between projects

---
 client/interfaces.go     | 1 +
 client/lxd.go            | 4 ++++
 client/lxd_containers.go | 9 +++++++++
 3 files changed, 14 insertions(+)

diff --git a/client/interfaces.go b/client/interfaces.go
index 351a50cab0..3addab14ce 100644
--- a/client/interfaces.go
+++ b/client/interfaces.go
@@ -238,6 +238,7 @@ type ConnectionInfo struct {
 	Certificate string
 	Protocol    string
 	URL         string
+	Project     string
 }
 
 // The ContainerBackupArgs struct is used when creating a container from a backup
diff --git a/client/lxd.go b/client/lxd.go
index f8eb53810b..a77f081890 100644
--- a/client/lxd.go
+++ b/client/lxd.go
@@ -47,6 +47,10 @@ func (r *ProtocolLXD) GetConnectionInfo() (*ConnectionInfo, error) {
 	info.Certificate = r.httpCertificate
 	info.Protocol = "lxd"
 	info.URL = r.httpHost
+	info.Project = r.project
+	if info.Project == "" {
+		info.Project = "default"
+	}
 
 	urls := []string{}
 	if r.httpProtocol == "https" {
diff --git a/client/lxd_containers.go b/client/lxd_containers.go
index 08497101ea..cd90913c66 100644
--- a/client/lxd_containers.go
+++ b/client/lxd_containers.go
@@ -303,6 +303,15 @@ func (r *ProtocolLXD) CopyContainer(source ContainerServer, container api.Contai
 
 	// Optimization for the local copy case
 	if destInfo.URL == sourceInfo.URL && !r.IsClustered() {
+		// Project handling
+		if destInfo.Project != sourceInfo.Project {
+			if !r.HasExtension("container_copy_project") {
+				return nil, fmt.Errorf("The server is missing the required \"container_copy_project\" API extension")
+			}
+
+			req.Source.Project = sourceInfo.Project
+		}
+
 		// Local copy source fields
 		req.Source.Type = "copy"
 		req.Source.Source = container.Name

From ad420bed37d183dd883c03fc5fd154394edff61c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 17:20:43 -0500
Subject: [PATCH 07/11] tests: Support copy between projects

---
 test/suites/projects.sh | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/test/suites/projects.sh b/test/suites/projects.sh
index d24ddb2b09..e56aa37832 100644
--- a/test/suites/projects.sh
+++ b/test/suites/projects.sh
@@ -132,6 +132,39 @@ test_projects_containers() {
   lxc delete c1
 }
 
+# Copy/move between projects
+test_projects_copy() {
+  ensure_import_testimage
+
+  # Create a couple of projects
+  lxc project create foo -c features.profiles=false -c features.images=false
+  lxc project create bar -c features.profiles=false -c features.images=false
+
+  # Create a container in the project
+  lxc --project foo init testimage c1
+  lxc --project foo copy c1 c1 --target-project bar
+  lxc --project bar start c1
+  lxc --project bar delete c1 -f
+
+  lxc --project foo snapshot c1
+  lxc --project foo snapshot c1
+  lxc --project foo snapshot c1
+
+  lxc --project foo copy c1 c1 --target-project bar
+  lxc --project foo start c1
+  lxc --project bar start c1
+
+  lxc --project foo delete c1 -f
+  lxc --project bar stop c1 -f
+  lxc --project bar move c1 c1 --target-project foo
+  lxc --project foo start c1
+  lxc --project foo delete c1 -f
+
+  # Clean things up
+  lxc project delete foo
+  lxc project delete bar
+}
+
 # Use snapshots in a project.
 test_projects_snapshots() {
   # Create a project and switch to it

From ec59ac0c51cbd9a28a4c0ef23c1b4a643f9cdd0d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 17:21:00 -0500
Subject: [PATCH 08/11] lxc: Support copy between projects

---
 lxc/copy.go | 8 ++++++++
 lxc/move.go | 5 ++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/lxc/copy.go b/lxc/copy.go
index 5271d003e0..05e00564a7 100644
--- a/lxc/copy.go
+++ b/lxc/copy.go
@@ -28,6 +28,7 @@ type cmdCopy struct {
 	flagStateless     bool
 	flagStorage       string
 	flagTarget        string
+	flagTargetProject string
 	flagRefresh       bool
 }
 
@@ -49,6 +50,7 @@ func (c *cmdCopy) Command() *cobra.Command {
 	cmd.Flags().BoolVar(&c.flagStateless, "stateless", false, i18n.G("Copy a stateful container stateless"))
 	cmd.Flags().StringVarP(&c.flagStorage, "storage", "s", "", i18n.G("Storage pool name")+"``")
 	cmd.Flags().StringVar(&c.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
+	cmd.Flags().StringVar(&c.flagTargetProject, "target-project", "", i18n.G("Copy to a project different from the source")+"``")
 	cmd.Flags().BoolVar(&c.flagNoProfiles, "no-profiles", false, i18n.G("Create the container with no profiles applied"))
 	cmd.Flags().BoolVar(&c.flagRefresh, "refresh", false, i18n.G("Perform an incremental copy"))
 
@@ -103,6 +105,12 @@ func (c *cmdCopy) copyContainer(conf *config.Config, sourceResource string,
 			return err
 		}
 	}
+
+	// Project copies
+	if c.flagTargetProject != "" {
+		dest = dest.UseProject(c.flagTargetProject)
+	}
+
 	// Confirm that --target is only used with a cluster
 	if c.flagTarget != "" && !dest.IsClustered() {
 		return fmt.Errorf(i18n.G("To use --target, the destination remote must be a cluster"))
diff --git a/lxc/move.go b/lxc/move.go
index 960041d53d..e7bbbea4ef 100644
--- a/lxc/move.go
+++ b/lxc/move.go
@@ -26,6 +26,7 @@ type cmdMove struct {
 	flagStateless     bool
 	flagStorage       string
 	flagTarget        string
+	flagTargetProject string
 }
 
 func (c *cmdMove) Command() *cobra.Command {
@@ -55,6 +56,7 @@ lxc move <container>/<old snapshot name> <container>/<new snapshot name>
 	cmd.Flags().BoolVar(&c.flagStateless, "stateless", false, i18n.G("Copy a stateful container stateless"))
 	cmd.Flags().StringVarP(&c.flagStorage, "storage", "s", "", i18n.G("Storage pool name")+"``")
 	cmd.Flags().StringVar(&c.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
+	cmd.Flags().StringVar(&c.flagTargetProject, "target-project", "", i18n.G("Copy to a project different from the source")+"``")
 
 	return cmd
 }
@@ -101,7 +103,7 @@ func (c *cmdMove) Run(cmd *cobra.Command, args []string) error {
 	// running, containers that are running should be live migrated (of
 	// course, this changing of hostname isn't supported right now, so this
 	// simply won't work).
-	if sourceRemote == destRemote && c.flagTarget == "" && c.flagStorage == "" {
+	if sourceRemote == destRemote && c.flagTarget == "" && c.flagStorage == "" && c.flagTargetProject == "" {
 		if c.flagConfig != nil || c.flagDevice != nil || c.flagProfile != nil || c.flagNoProfiles {
 			return fmt.Errorf(i18n.G("Can't override configuration or profiles in local rename"))
 		}
@@ -160,6 +162,7 @@ func (c *cmdMove) Run(cmd *cobra.Command, args []string) error {
 	cpy := cmdCopy{}
 	cpy.global = c.global
 	cpy.flagTarget = c.flagTarget
+	cpy.flagTargetProject = c.flagTargetProject
 	cpy.flagConfig = c.flagConfig
 	cpy.flagDevice = c.flagDevice
 	cpy.flagProfile = c.flagProfile

From 6450400d67e3bd6b77f4ce7bf9c5fdf629829b2f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 17:21:19 -0500
Subject: [PATCH 09/11] lxd: Support copy between projects

---
 lxd/containers_post.go | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/lxd/containers_post.go b/lxd/containers_post.go
index 2d4f5aafa0..1ec8a6b3c6 100644
--- a/lxd/containers_post.go
+++ b/lxd/containers_post.go
@@ -472,7 +472,13 @@ func createFromCopy(d *Daemon, project string, req *api.ContainersPost) Response
 		return BadRequest(fmt.Errorf("must specify a source container"))
 	}
 
-	source, err := containerLoadByProjectAndName(d.State(), project, req.Source.Source)
+	sourceProject := req.Source.Project
+	if sourceProject == "" {
+		sourceProject = project
+	}
+	targetProject := project
+
+	source, err := containerLoadByProjectAndName(d.State(), sourceProject, req.Source.Source)
 	if err != nil {
 		return SmartError(err)
 	}
@@ -531,7 +537,7 @@ func createFromCopy(d *Daemon, project string, req *api.ContainersPost) Response
 	}
 
 	args := db.ContainerArgs{
-		Project:      project,
+		Project:      targetProject,
 		Architecture: source.Architecture(),
 		BaseImage:    req.Source.BaseImage,
 		Config:       req.Config,
@@ -555,7 +561,7 @@ func createFromCopy(d *Daemon, project string, req *api.ContainersPost) Response
 	resources := map[string][]string{}
 	resources["containers"] = []string{req.Name, req.Source.Source}
 
-	op, err := operationCreate(d.cluster, project, operationClassTask, db.OperationContainerCreate, resources, nil, run, nil, nil)
+	op, err := operationCreate(d.cluster, targetProject, operationClassTask, db.OperationContainerCreate, resources, nil, run, nil, nil)
 	if err != nil {
 		return InternalError(err)
 	}

From 8dc6a73d36275cd3b3e26c564bfc28e173c30945 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 17:27:35 -0500
Subject: [PATCH 10/11] doc: Add container_copy_project API extension
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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

diff --git a/doc/api-extensions.md b/doc/api-extensions.md
index 9248c16388..de038b351c 100644
--- a/doc/api-extensions.md
+++ b/doc/api-extensions.md
@@ -647,3 +647,7 @@ be passed to a container (similar to what's done for GPUs).
 This adds support for snapshot scheduling. It introduces three new
 configuration keys: `snapshots.schedule`, `snapshots.schedule.stopped`, and
 `snapshots.pattern`. Snapshots can be created automatically up to every minute.
+
+## container\_copy\_project
+Introduces a `project` field to the container source dict, allowing for
+copy/move of containers between projects.
diff --git a/shared/version/api.go b/shared/version/api.go
index 21941b65aa..917b47c79b 100644
--- a/shared/version/api.go
+++ b/shared/version/api.go
@@ -132,6 +132,7 @@ var APIExtensions = []string{
 	"container_incremental_copy",
 	"usb_optional_vendorid",
 	"snapshot_scheduling",
+	"container_copy_project",
 }
 
 // APIExtensionsCount returns the number of available API extensions.

From 19b0811355e833d08df05deb9cb17de35cfa2111 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 20 Nov 2018 12:29:29 -0500
Subject: [PATCH 11/11] i18n: Update translation templates
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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

diff --git a/po/de.po b/po/de.po
index 33fe177946..62c15ca271 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: 2018-10-08 21:27+0000\n"
 "Last-Translator: Tim Rose <tim at netlope.de>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -288,7 +288,7 @@ msgstr ""
 "###\n"
 "### Der Name wird zwar angezeigt, lässt sich jedoch nicht ändern.\n"
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (%d mehr)"
@@ -312,23 +312,23 @@ msgstr ""
 msgid "(none)"
 msgstr "(kein Wert)"
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -389,12 +389,12 @@ msgstr "entfernte Instanz %s existiert nicht"
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 #, fuzzy
 msgid "Aliases:"
 msgstr "Aliasse:\n"
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, fuzzy, c-format
 msgid "Architecture: %s"
 msgstr "Architektur: %s\n"
@@ -441,7 +441,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr "automatisches Update: %s"
@@ -460,18 +460,18 @@ msgstr "Profil %s erstellt\n"
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, fuzzy, c-format
 msgid "Bad property: %s"
 msgstr "Ungültige Abbild Eigenschaft: %s\n"
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr "ERSTELLT AM"
 msgid "CREATED AT"
 msgstr "ERSTELLT AM"
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, fuzzy, c-format
 msgid "Cached: %s"
 msgstr ""
@@ -523,7 +523,7 @@ msgstr ""
 "Optionen:\n"
 "\n"
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -584,7 +584,7 @@ msgstr "Gespeichertes Nutzerzertifikat auf dem Server: "
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -600,15 +600,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr "Spalten"
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -616,7 +616,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 #, fuzzy
 msgid "Config key/value to apply to the new container"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -626,7 +626,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Config key/value to apply to the new project"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 #, fuzzy
 msgid "Config key/value to apply to the target container"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -646,7 +646,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -656,7 +656,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr "Abbild mit Fingerabdruck %s importiert\n"
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -664,7 +664,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr "Kopiere Aliasse von der Quelle"
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 #, fuzzy
 msgid "Copy containers within or in between LXD instances"
 msgstr "Herunterfahren des Containers erzwingen."
@@ -694,7 +694,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 #, fuzzy
 msgid "Copy the container without its snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
@@ -704,6 +704,10 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Copy the volume without its snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -777,12 +781,12 @@ msgstr "Fehlerhafte Profil URL %s"
 msgid "Create storage pools"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 #, fuzzy
 msgid "Create the container with no profiles applied"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr "Erstellt: %s"
@@ -801,7 +805,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr "BESCHREIBUNG"
@@ -876,15 +880,15 @@ msgstr "Kein Zertifikat für diese Verbindung"
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -967,7 +971,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr " Prozessorauslastung:"
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -1021,7 +1025,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1049,7 +1053,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr "Flüchtiger Container"
 
@@ -1085,12 +1089,12 @@ msgstr ""
 "\n"
 "lxc exec <Container> [--env EDITOR=/usr/bin/vim]... <Befehl>\n"
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -1129,12 +1133,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr "FINGERABDRUCK"
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 #, fuzzy
 msgid "Failed to connect to cluster member"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -1144,7 +1148,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 #, fuzzy
 msgid "Failed to get the new container name"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -1170,7 +1174,7 @@ msgstr ""
 "Anzeigen von Informationen über entfernte Instanzen wird noch nicht "
 "unterstützt\n"
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, fuzzy, c-format
 msgid "Fingerprint: %s"
 msgstr "Fingerabdruck: %s\n"
@@ -1192,11 +1196,11 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1270,7 +1274,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1281,7 +1285,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1293,7 +1297,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1302,12 +1306,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr "Abbild mit Fingerabdruck %s importiert\n"
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, fuzzy, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr "Abbild mit Fingerabdruck %s importiert\n"
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1364,7 +1368,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Ungültiges Ziel %s"
@@ -1385,7 +1389,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 #, fuzzy
 msgid "Invalid number of arguments"
 msgstr "ungültiges Argument %s"
@@ -1434,12 +1438,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1571,11 +1575,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1788,11 +1792,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1885,7 +1889,7 @@ msgid "More than one file to download, but target is not a directory"
 msgstr ""
 "Mehr als eine Datei herunterzuladen, aber das Ziel ist kein Verzeichnis"
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 #, fuzzy
 msgid "Move containers within or in between LXD instances"
 msgstr "Herunterfahren des Containers erzwingen."
@@ -1895,7 +1899,7 @@ msgstr "Herunterfahren des Containers erzwingen."
 msgid "Move storage volumes between pools"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 #, fuzzy
 msgid "Move the container without its snapshots"
 msgstr "Herunterfahren des Containers erzwingen."
@@ -1967,7 +1971,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 #, fuzzy
 msgid "New key/value to apply to a specific device"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -2007,7 +2011,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -2020,6 +2024,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr "Profil %s gelöscht\n"
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -2044,7 +2052,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -2056,7 +2064,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, fuzzy, c-format
 msgid "Password for %s: "
 msgstr "Administrator Passwort für %s: "
@@ -2066,7 +2074,7 @@ msgstr "Administrator Passwort für %s: "
 msgid "Pause containers"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -2089,7 +2097,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -2097,7 +2105,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -2141,12 +2149,12 @@ msgstr "Gerät %s wurde von %s entfernt\n"
 msgid "Profile %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 #, fuzzy
 msgid "Profile to apply to the new container"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 #, fuzzy
 msgid "Profile to apply to the target container"
 msgstr "kann nicht zum selben Container Namen kopieren"
@@ -2176,7 +2184,7 @@ msgstr "Profil %s gelöscht\n"
 msgid "Project %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 #, fuzzy
 msgid "Properties:"
 msgstr "Eigenschaften:\n"
@@ -2185,7 +2193,7 @@ msgstr "Eigenschaften:\n"
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, fuzzy, c-format
 msgid "Public: %s"
 msgstr "Öffentlich: %s\n"
@@ -2219,16 +2227,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, fuzzy, c-format
 msgid "Refreshing container: %s"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2398,7 +2406,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2501,11 +2509,11 @@ msgstr "Setzt die Dateiberechtigungen beim Übertragen"
 msgid "Set the file's uid on push"
 msgstr "Setzt die uid der Datei beim Übertragen"
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2539,11 +2547,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2601,7 +2609,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2609,7 +2617,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, fuzzy, c-format
 msgid "Size: %.2fMB"
 msgstr "Größe: %.2vMB\n"
@@ -2628,7 +2636,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2685,7 +2693,7 @@ msgstr "Profil %s gelöscht\n"
 msgid "Storage pool %s pending on member %s"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 #, fuzzy
 msgid "Storage pool name"
 msgstr "Profilname kann nicht geändert werden"
@@ -2740,15 +2748,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2792,7 +2800,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr "entfernte Instanz %s existiert nicht"
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2816,7 +2824,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr "Wartezeit bevor der Container gestoppt wird."
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 #, fuzzy
 msgid "Timestamps:"
 msgstr "Zeitstempel:\n"
@@ -2833,11 +2841,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2845,20 +2853,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, fuzzy, c-format
 msgid "Transferring container: %s"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2876,7 +2884,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2894,7 +2902,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2904,7 +2912,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr "Unbekannter Befehl %s für Abbild"
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 #, fuzzy
 msgid "Unset all profiles on the target container"
 msgstr "nicht alle Profile der Quelle sind am Ziel vorhanden."
@@ -2939,7 +2947,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr "Alternatives config Verzeichnis."
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2993,12 +3001,12 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr "kann nicht zum selben Container Namen kopieren"
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 #, fuzzy
 msgid "You must specify a destination container name when using --target"
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 #, fuzzy
 msgid "You must specify a source container name"
 msgstr "der Name des Ursprung Containers muss angegeben werden"
@@ -3076,7 +3084,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -3211,7 +3219,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -3268,7 +3276,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3358,7 +3366,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3391,7 +3399,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3533,7 +3541,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 #, fuzzy
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
@@ -3641,7 +3649,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 #, fuzzy
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
@@ -3660,7 +3668,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3730,7 +3738,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -3883,7 +3891,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -4046,7 +4054,7 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
 
diff --git a/po/el.po b/po/el.po
index 86c6266ddf..ac10b0887e 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\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,7 +163,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -187,23 +187,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -262,11 +262,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -312,7 +312,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -330,18 +330,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -383,12 +383,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -449,7 +449,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -465,15 +465,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -481,7 +481,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -489,7 +489,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -508,7 +508,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -518,7 +518,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -526,7 +526,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -554,7 +554,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -562,6 +562,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -628,11 +632,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -650,7 +654,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -721,15 +725,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -812,7 +816,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr "  Χρήση CPU:"
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -864,7 +868,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -892,7 +896,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -924,12 +928,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -966,12 +970,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -980,7 +984,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1002,7 +1006,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1023,11 +1027,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1099,7 +1103,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1109,7 +1113,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1121,7 +1125,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1130,12 +1134,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1190,7 +1194,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1211,7 +1215,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1259,12 +1263,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1377,11 +1381,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1583,11 +1587,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr "  Χρήση μνήμης:"
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1673,7 +1677,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1681,7 +1685,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1751,7 +1755,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1788,7 +1792,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1801,6 +1805,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1825,7 +1833,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1837,7 +1845,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1846,7 +1854,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1869,7 +1877,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1877,7 +1885,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1921,11 +1929,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1954,7 +1962,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1962,7 +1970,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1993,16 +2001,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2159,7 +2167,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2256,11 +2264,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2292,11 +2300,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2352,7 +2360,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2360,7 +2368,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2378,7 +2386,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2433,7 +2441,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2484,15 +2492,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2533,7 +2541,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2554,7 +2562,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2570,11 +2578,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2582,20 +2590,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2613,7 +2621,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2631,7 +2639,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2641,7 +2649,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2673,7 +2681,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2723,11 +2731,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2803,7 +2811,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2917,7 +2925,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2969,7 +2977,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3046,7 +3054,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3079,7 +3087,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3221,7 +3229,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3325,7 +3333,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3339,7 +3347,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3393,7 +3401,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3519,7 +3527,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3660,6 +3668,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/es.po b/po/es.po
index 34ead9b452..42b6ccd74d 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\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/"
@@ -235,7 +235,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -259,23 +259,23 @@ msgstr "%s no es un tipo de archivo soportado."
 msgid "(none)"
 msgstr "(ninguno)"
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr "ALIASES"
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -335,11 +335,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr "Aliases:"
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr "Arquitectura: %s"
@@ -385,7 +385,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr "Tipo de autenticación %s no está soportada por el servidor"
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr "Auto actualización: %s"
@@ -403,18 +403,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr "Propiedad mala: %s"
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -455,12 +455,12 @@ msgstr "CREADO"
 msgid "CREATED AT"
 msgstr "CREADO EN"
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr "Cacheado: %s"
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr "Certificado del cliente almacenado en el servidor:"
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -538,15 +538,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr "Columnas"
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -554,7 +554,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -562,7 +562,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -581,7 +581,7 @@ msgstr "Log de la consola:"
 msgid "Container name is mandatory"
 msgstr "Nombre del contenedor es obligatorio"
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr "Nombre del contenedor es: %s"
@@ -591,7 +591,7 @@ msgstr "Nombre del contenedor es: %s"
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -599,7 +599,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -627,7 +627,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -635,6 +635,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -702,11 +706,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -724,7 +728,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -795,15 +799,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -885,7 +889,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -937,7 +941,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -965,7 +969,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -997,12 +1001,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -1041,12 +1045,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -1055,7 +1059,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1077,7 +1081,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1098,11 +1102,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1184,7 +1188,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1196,7 +1200,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1205,12 +1209,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1266,7 +1270,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1287,7 +1291,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1335,12 +1339,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1454,11 +1458,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1659,11 +1663,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1752,7 +1756,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1760,7 +1764,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1829,7 +1833,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1866,7 +1870,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1879,6 +1883,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1903,7 +1911,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1915,7 +1923,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, fuzzy, c-format
 msgid "Password for %s: "
 msgstr "Contraseña admin para %s:"
@@ -1924,7 +1932,7 @@ msgstr "Contraseña admin para %s:"
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1999,11 +2007,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -2032,7 +2040,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -2040,7 +2048,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2071,16 +2079,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, fuzzy, c-format
 msgid "Refreshing container: %s"
 msgstr "No se puede proveer el nombre del container a la lista"
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2237,7 +2245,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2334,11 +2342,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2370,11 +2378,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2430,7 +2438,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2438,7 +2446,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2456,7 +2464,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2511,7 +2519,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2562,15 +2570,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2611,7 +2619,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2632,7 +2640,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2648,11 +2656,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2660,20 +2668,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2691,7 +2699,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2709,7 +2717,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2719,7 +2727,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2751,7 +2759,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2801,11 +2809,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2882,7 +2890,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2996,7 +3004,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -3048,7 +3056,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3125,7 +3133,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3158,7 +3166,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3300,7 +3308,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3404,7 +3412,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3418,7 +3426,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3472,7 +3480,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3598,7 +3606,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3740,7 +3748,7 @@ msgstr "Columnas"
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
 
diff --git a/po/fa.po b/po/fa.po
index e70beaa191..5fe6fbcd9c 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/fi.po b/po/fi.po
index ada7cd0ea9..78f20367a9 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 1a419824f0..7e3a0bbc37 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: 2018-10-11 22:31+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: French <https://hosted.weblate.org/projects/linux-containers/"
@@ -275,7 +275,7 @@ msgstr ""
 "###\n"
 "### Notez que le nom est affiché mais ne peut être modifié"
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (%d de plus)"
@@ -299,24 +299,24 @@ msgstr "'%s' n'est pas un format de fichier pris en charge."
 msgid "(none)"
 msgstr "(aucun)"
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 #, fuzzy
 msgid "ALIASES"
 msgstr "ALIAS"
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr "ARCH"
 
@@ -378,11 +378,11 @@ msgstr "le serveur distant %s n'existe pas"
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr "Alias :"
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architecture : %s"
@@ -429,7 +429,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr "Le type d'authentification '%s' n'est pas supporté par le serveur"
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr "Mise à jour auto. : %s"
@@ -448,18 +448,18 @@ msgstr "Image copiée avec succès !"
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr "Mauvaise propriété : %s"
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -501,12 +501,12 @@ msgstr "CRÉÉ À"
 msgid "CREATED AT"
 msgstr "CRÉÉ À"
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, fuzzy, c-format
 msgid "Cached: %s"
 msgstr "Créé : %s"
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -571,7 +571,7 @@ msgstr "Certificat client enregistré sur le serveur : "
 msgid "Client version: %s\n"
 msgstr "Afficher la version du client"
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -587,15 +587,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr "Colonnes"
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 #, fuzzy
 msgid ""
 "Command line client for LXD\n"
@@ -609,7 +609,7 @@ msgstr ""
 "commandes ci-dessous.\n"
 "Pour de l'aide avec l'une des commandes, simplement les utiliser avec --help."
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
 
@@ -618,7 +618,7 @@ msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
 msgid "Config key/value to apply to the new project"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 #, fuzzy
 msgid "Config key/value to apply to the target container"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr "Le nom du conteneur est obligatoire"
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr "Le nom du conteneur est : %s"
@@ -648,7 +648,7 @@ msgstr "Le nom du conteneur est : %s"
 msgid "Container published with fingerprint: %s"
 msgstr "Conteneur publié avec l'empreinte : %s"
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -656,7 +656,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr "Copier les alias depuis la source"
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 #, fuzzy
 msgid "Copy containers within or in between LXD instances"
 msgstr "Copiez le conteneur sans ses instantanés"
@@ -686,7 +686,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr "Copiez le conteneur sans ses instantanés"
 
@@ -695,6 +695,10 @@ msgstr "Copiez le conteneur sans ses instantanés"
 msgid "Copy the volume without its snapshots"
 msgstr "Copiez le conteneur sans ses instantanés"
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -784,12 +788,12 @@ msgstr "Créé : %s"
 msgid "Create storage pools"
 msgstr "Copie de l'image : %s"
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 #, fuzzy
 msgid "Create the container with no profiles applied"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr "Créé : %s"
@@ -807,7 +811,7 @@ msgstr "Création du conteneur"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
@@ -883,15 +887,15 @@ msgstr "Copie de l'image : %s"
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -974,7 +978,7 @@ msgstr "Désactiver stdin (lecture à partir de /dev/null)"
 msgid "Disk usage:"
 msgstr "  Disque utilisé :"
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -1029,7 +1033,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1057,7 +1061,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr "Variable d'environnement (de la forme HOME=/home/foo) à positionner"
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr "Conteneur éphémère"
 
@@ -1098,12 +1102,12 @@ msgstr ""
 "sélectionné si à la fois stdin et stdout sont des terminaux (stderr\n"
 "est ignoré)."
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr "Expire : %s"
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr "N'expire jamais"
 
@@ -1144,12 +1148,12 @@ msgstr "Import de l'image : %s"
 msgid "FILENAME"
 msgstr "NOM"
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr "EMPREINTE"
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 #, fuzzy
 msgid "Failed to connect to cluster member"
 msgstr "Profil à appliquer au nouveau conteneur"
@@ -1159,7 +1163,7 @@ msgstr "Profil à appliquer au nouveau conteneur"
 msgid "Failed to create alias %s"
 msgstr "Échec lors de la génération de 'lxc.%s.1': %v"
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 #, fuzzy
 msgid "Failed to get the new container name"
 msgstr "Profil à appliquer au nouveau conteneur"
@@ -1183,7 +1187,7 @@ msgstr "Mode rapide (identique à --columns=nsacPt"
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr "Empreinte : %s"
@@ -1205,11 +1209,11 @@ msgstr "Forcer le conteneur à s'arrêter"
 msgid "Force the removal of running containers"
 msgstr "Forcer la suppression des conteneurs arrêtés"
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr "Forcer l'utilisation de la socket unix locale"
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1287,7 +1291,7 @@ msgstr "IPv6"
 msgid "ISSUE DATE"
 msgstr "DATE D'ÉMISSION"
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 #, fuzzy
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
@@ -1301,7 +1305,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Ignorer l'état du conteneur (seulement pour start)"
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1314,7 +1318,7 @@ msgstr "Image copiée avec succès !"
 msgid "Image exported successfully!"
 msgstr "Image copiée avec succès !"
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1323,12 +1327,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr "Image importée avec l'empreinte : %s"
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr "Image importée avec l'empreinte : %s"
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 #, fuzzy
 msgid "Image refreshed successfully!"
 msgstr "Image copiée avec succès !"
@@ -1386,7 +1390,7 @@ msgstr "Clé de configuration invalide"
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Cible invalide %s"
@@ -1407,7 +1411,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 #, fuzzy
 msgid "Invalid number of arguments"
 msgstr "nombre d'arguments incorrect pour la sous-comande"
@@ -1456,12 +1460,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr "Dernière utilisation : %s"
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr "Dernière utilisation : jamais"
 
@@ -1638,11 +1642,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1853,12 +1857,12 @@ msgstr "Mémoire (pointe)"
 msgid "Memory usage:"
 msgstr "  Mémoire utilisée :"
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 #, fuzzy
 msgid "Migration API failure"
 msgstr "Échec lors de la migration vers l'hôte source: %s"
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1954,7 +1958,7 @@ msgid "More than one file to download, but target is not a directory"
 msgstr ""
 "Plusieurs fichiers à télécharger, mais la destination n'est pas un dossier"
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 #, fuzzy
 msgid "Move containers within or in between LXD instances"
 msgstr "Forcer le conteneur à s'arrêter"
@@ -1964,7 +1968,7 @@ msgstr "Forcer le conteneur à s'arrêter"
 msgid "Move storage volumes between pools"
 msgstr "Copie de l'image : %s"
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 #, fuzzy
 msgid "Move the container without its snapshots"
 msgstr "Forcer le conteneur à s'arrêter"
@@ -2036,7 +2040,7 @@ msgstr "Nouvel alias à définir sur la cible"
 msgid "New aliases to add to the image"
 msgstr "Nouvel alias à définir sur la cible"
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 #, fuzzy
 msgid "New key/value to apply to a specific device"
 msgstr "Clé/valeur de configuration à appliquer au nouveau conteneur"
@@ -2079,7 +2083,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr "Seules les URLs https sont supportées par simplestreams"
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 #, fuzzy
 msgid "Only https:// is supported for remote image import"
 msgstr "Seul https:// est supporté par l'import d'images distantes."
@@ -2094,6 +2098,11 @@ msgstr "Seuls les réseaux gérés par LXD peuvent être modifiés."
 msgid "Operation %s deleted"
 msgstr "Le réseau %s a été supprimé"
 
+#: lxc/main.go:61
+#, fuzzy
+msgid "Override the source project"
+msgstr "impossible de supprimer le serveur distant par défaut"
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr "Surcharger le mode terminal (auto, interactif ou non-interactif)"
@@ -2118,7 +2127,7 @@ msgstr "PROFILS"
 msgid "PROTOCOL"
 msgstr "PROTOCOLE"
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr "PUBLIC"
 
@@ -2130,7 +2139,7 @@ msgstr "Paquets reçus"
 msgid "Packets sent"
 msgstr "Paquets émis"
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, fuzzy, c-format
 msgid "Password for %s: "
 msgstr "Mot de passe administrateur pour %s : "
@@ -2140,7 +2149,7 @@ msgstr "Mot de passe administrateur pour %s : "
 msgid "Pause containers"
 msgstr "Création du conteneur"
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -2163,7 +2172,7 @@ msgstr "Appuyer sur Entrée pour lancer à nouveau l'éditeur"
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -2171,7 +2180,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -2215,11 +2224,11 @@ msgstr "Profil %s supprimé de %s"
 msgid "Profile %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr "Profil à appliquer au nouveau conteneur"
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 #, fuzzy
 msgid "Profile to apply to the target container"
 msgstr "Profil à appliquer au nouveau conteneur"
@@ -2249,7 +2258,7 @@ msgstr "Profil %s supprimé"
 msgid "Project %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr "Propriétés :"
 
@@ -2257,7 +2266,7 @@ msgstr "Propriétés :"
 msgid "Public image server"
 msgstr "Serveur d'images public"
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr "Public : %s"
@@ -2292,17 +2301,17 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr "Pousser ou récupérer des fichiers récursivement"
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 #, fuzzy
 msgid "Refresh images"
 msgstr "Récupération de l'image : %s"
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, fuzzy, c-format
 msgid "Refreshing container: %s"
 msgstr "Ignorer l'état du conteneur (seulement pour start)"
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, fuzzy, c-format
 msgid "Refreshing the image: %s"
 msgstr "Récupération de l'image : %s"
@@ -2472,7 +2481,7 @@ msgstr "Récupération de l'image : %s"
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr "TAILLE"
 
@@ -2579,11 +2588,11 @@ msgstr "Définir les permissions du fichier lors de l'envoi"
 msgid "Set the file's uid on push"
 msgstr "Définir l'uid du fichier lors de l'envoi"
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2619,11 +2628,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 #, fuzzy
 msgid "Show less common commands"
 msgstr "Afficher les commandes moins communes"
@@ -2687,7 +2696,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2695,7 +2704,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr "Taille : %.2f Mo"
@@ -2714,7 +2723,7 @@ msgstr "Instantanés :"
 msgid "Some containers failed to %s"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr "Source :"
 
@@ -2771,7 +2780,7 @@ msgstr "Le réseau %s a été supprimé"
 msgid "Storage pool %s pending on member %s"
 msgstr "Le réseau %s a été créé"
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr "Nom de l'ensemble de stockage"
 
@@ -2827,15 +2836,15 @@ msgstr ""
 msgid "TYPE"
 msgstr "TYPE"
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2884,7 +2893,7 @@ msgstr "L'image locale '%s' n'a pas été trouvée, essayer '%s:' à la place."
 msgid "The profile device doesn't exist"
 msgstr "Le périphérique indiqué n'existe pas"
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2905,7 +2914,7 @@ msgstr "Il n'existe pas d'\"image\".  Vouliez-vous un alias ?"
 msgid "Time to wait for the container before killing it"
 msgstr "Temps d'attente du conteneur avant de le tuer"
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr "Horodatage :"
 
@@ -2921,13 +2930,13 @@ msgstr "Pour créer un réseau, utiliser : lxc network create"
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 #, fuzzy
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 "Pour démarrer votre premier conteneur, essayer : lxc launch ubuntu:16.04"
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2935,20 +2944,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, fuzzy, c-format
 msgid "Transferring container: %s"
 msgstr "Transfert de l'image : %s"
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr "Transfert de l'image : %s"
@@ -2966,7 +2975,7 @@ msgstr "Type : éphémère"
 msgid "Type: persistent"
 msgstr "Type : persistant"
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr "DATE DE PUBLICATION"
 
@@ -2984,7 +2993,7 @@ msgstr "UTILISÉ PAR"
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2994,7 +3003,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 #, fuzzy
 msgid "Unset all profiles on the target container"
 msgstr "tous les profils de la source n'existent pas sur la cible"
@@ -3034,7 +3043,7 @@ msgstr "Clé de configuration invalide"
 msgid "Unset storage volume configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr "Publié : %s"
@@ -3089,12 +3098,12 @@ msgstr "Il est impossible de passer -t et -T simultanément"
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr "impossible de copier vers le même nom de conteneur"
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 #, fuzzy
 msgid "You must specify a destination container name when using --target"
 msgstr "vous devez spécifier un nom de conteneur source"
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 #, fuzzy
 msgid "You must specify a source container name"
 msgstr "vous devez spécifier un nom de conteneur source"
@@ -3172,7 +3181,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -3311,7 +3320,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr "pas d'image, conteneur ou instantané affecté sur ce serveur"
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr "désactivé"
 
@@ -3371,7 +3380,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr "activé"
 
@@ -3465,7 +3474,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3498,7 +3507,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3650,7 +3659,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 #, fuzzy
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
@@ -3766,7 +3775,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 #, fuzzy
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
@@ -3789,7 +3798,7 @@ msgstr ""
 msgid "network"
 msgstr "Nom du réseau"
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr "non"
 
@@ -3866,7 +3875,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -4029,7 +4038,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -4201,7 +4210,7 @@ msgstr "Colonnes"
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr "oui"
 
diff --git a/po/hi.po b/po/hi.po
index 69c5c4d756..a04a817c99 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/id.po b/po/id.po
index 5d0222e1e4..ecc9e2f98e 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/it.po b/po/it.po
index 8dec880a9f..c40ee881a8 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\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/"
@@ -200,7 +200,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (altri %d)"
@@ -224,23 +224,23 @@ msgstr "'%s' non è un tipo di file supportato."
 msgid "(none)"
 msgstr "(nessuno)"
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr "ALIAS"
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr "ALIAS"
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr "ARCH"
 
@@ -300,11 +300,11 @@ msgstr "il remote %s non esiste"
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr "Alias:"
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architettura: %s"
@@ -350,7 +350,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr "Aggiornamento automatico: %s"
@@ -368,18 +368,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr "Proprietà errata: %s"
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -421,12 +421,12 @@ msgstr "CREATO IL"
 msgid "CREATED AT"
 msgstr "CREATO IL"
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -487,7 +487,7 @@ msgstr "Certificato del client salvato dal server: "
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -503,15 +503,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr "Colonne"
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -519,7 +519,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -546,7 +546,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr "Il nome del container è: %s"
@@ -556,7 +556,7 @@ msgstr "Il nome del container è: %s"
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -564,7 +564,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -592,7 +592,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -600,6 +600,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -668,11 +672,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -690,7 +694,7 @@ msgstr "Creazione del container in corso"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr "DESCRIZIONE"
@@ -761,15 +765,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -851,7 +855,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr "Utilizzo disco:"
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -903,7 +907,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -931,7 +935,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -963,12 +967,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -1007,12 +1011,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -1021,7 +1025,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr "'%s' non è un tipo di file supportato."
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1065,11 +1069,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1141,7 +1145,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1152,7 +1156,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1164,7 +1168,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1173,12 +1177,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1234,7 +1238,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, fuzzy, c-format
 msgid "Invalid format %q"
 msgstr "Proprietà errata: %s"
@@ -1255,7 +1259,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 #, fuzzy
 msgid "Invalid number of arguments"
 msgstr "numero errato di argomenti del sottocomando"
@@ -1304,12 +1308,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1424,11 +1428,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1631,11 +1635,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1723,7 +1727,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1731,7 +1735,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1800,7 +1804,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1837,7 +1841,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1850,6 +1854,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1874,7 +1882,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1886,7 +1894,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, fuzzy, c-format
 msgid "Password for %s: "
 msgstr "Password amministratore per %s: "
@@ -1896,7 +1904,7 @@ msgstr "Password amministratore per %s: "
 msgid "Pause containers"
 msgstr "Creazione del container in corso"
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1919,7 +1927,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1927,7 +1935,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1971,11 +1979,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -2004,7 +2012,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -2012,7 +2020,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2043,16 +2051,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, fuzzy, c-format
 msgid "Refreshing container: %s"
 msgstr "Creazione del container in corso"
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2210,7 +2218,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2307,11 +2315,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2343,11 +2351,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2403,7 +2411,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2411,7 +2419,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2429,7 +2437,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2485,7 +2493,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2537,15 +2545,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2587,7 +2595,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr "il remote %s non esiste"
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2608,7 +2616,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2624,11 +2632,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2636,20 +2644,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2667,7 +2675,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2685,7 +2693,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2695,7 +2703,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 #, fuzzy
 msgid "Unset all profiles on the target container"
 msgstr "non tutti i profili dell'origine esistono nella destinazione"
@@ -2728,7 +2736,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2778,12 +2786,12 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 #, fuzzy
 msgid "You must specify a destination container name when using --target"
 msgstr "Occorre specificare un nome di container come origine"
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr "Occorre specificare un nome di container come origine"
 
@@ -2860,7 +2868,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2974,7 +2982,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -3026,7 +3034,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3103,7 +3111,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3136,7 +3144,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3278,7 +3286,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3382,7 +3390,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3396,7 +3404,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr "no"
 
@@ -3450,7 +3458,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3576,7 +3584,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3718,7 +3726,7 @@ msgstr "Colonne"
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr "si"
 
diff --git a/po/ja.po b/po/ja.po
index 439e225dc1..0b7d8e7f65 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: 2018-10-12 14:44+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -163,7 +163,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr "%s (他%d個)"
@@ -188,24 +188,24 @@ msgstr "'%s' はサポートされないタイプのファイルです"
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 #, fuzzy
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr "--container-only と --target は同時に指定できません"
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -264,11 +264,11 @@ msgstr "エイリアス %s は存在しません"
 msgid "Alias name missing"
 msgstr "エイリアスを指定してください"
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr "エイリアス:"
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr "アーキテクチャ: %s"
@@ -318,7 +318,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr "認証タイプ '%s' はサーバではサポートされていません"
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr "自動更新: %s"
@@ -336,18 +336,18 @@ msgstr "バックアップのエクスポートが成功しました!"
 msgid "Bad key/value pair: %s"
 msgstr "不適切なキー/値のペア: %s"
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr "不適切な キー=値 のペア: %s"
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr "不正なイメージプロパティ形式: %s"
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -389,12 +389,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr "キャッシュ済: %s"
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr "ローカル上のリネームでは、設定やプロファイルの上書きはできません"
 
@@ -458,7 +458,7 @@ msgstr "クライアント証明書がサーバに格納されました: "
 msgid "Client version: %s\n"
 msgstr "クライアントバージョン: %s\n"
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -474,15 +474,15 @@ msgstr "クラスタメンバ名"
 msgid "Clustering enabled"
 msgstr "クラスタリングが有効になりました"
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr "カラムレイアウト"
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr "LXD のコマンドラインクライアント"
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -494,7 +494,7 @@ msgstr ""
 "LXD の機能のすべてが、以下の色々なコマンドから操作できます。\n"
 "コマンドのヘルプは、--help をコマンドに付けて実行するだけです。"
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr "新しいコンテナに適用するキー/値の設定"
 
@@ -502,7 +502,7 @@ msgstr "新しいコンテナに適用するキー/値の設定"
 msgid "Config key/value to apply to the new project"
 msgstr "新しいプロジェクトに適用するキー/値の設定"
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr "移動先のコンテナに適用するキー/値の設定"
 
@@ -521,7 +521,7 @@ msgstr "コンソールログ:"
 msgid "Container name is mandatory"
 msgstr "コンテナ名を指定する必要があります"
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr "コンテナ名: %s"
@@ -531,7 +531,7 @@ msgstr "コンテナ名: %s"
 msgid "Container published with fingerprint: %s"
 msgstr "コンテナは以下のフィンガープリントで publish されます: %s"
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr "ステートフルなコンテナをステートレスにコピーします"
 
@@ -539,7 +539,7 @@ msgstr "ステートフルなコンテナをステートレスにコピーしま
 msgid "Copy aliases from source"
 msgstr "ソースからエイリアスをコピーしました"
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr "LXD インスタンス内に、またはインスタンス間でコンテナをコピーします"
 
@@ -571,7 +571,7 @@ msgstr "プロファイルをコピーします"
 msgid "Copy storage volumes"
 msgstr "ストレージボリュームをコピーします"
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr "コンテナをコピーします (スナップショットはコピーしません)"
 
@@ -579,6 +579,10 @@ msgstr "コンテナをコピーします (スナップショットはコピー
 msgid "Copy the volume without its snapshots"
 msgstr "ボリュームをコピーします (スナップショットはコピーしません)"
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -649,11 +653,11 @@ msgstr "プロジェクトを作成します"
 msgid "Create storage pools"
 msgstr "ストレージプールを作成します"
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr "プロファイルを適用しないコンテナを作成します"
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr "作成日時: %s"
@@ -671,7 +675,7 @@ msgstr "コンテナを作成中"
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -742,15 +746,15 @@ msgstr "ストレージボリュームを削除します"
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -832,7 +836,7 @@ msgstr "標準入力を無効にします (/dev/null から読み込みます)"
 msgid "Disk usage:"
 msgstr "ディスク使用量:"
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr "進捗情報を表示しません"
 
@@ -884,7 +888,7 @@ msgstr "ストレージプールの設定をYAMLで編集します"
 msgid "Edit storage volume configurations as YAML"
 msgstr "ストレージボリュームの設定をYAMLで編集します"
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -923,7 +927,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr "環境変数を設定します (例: HOME=/home/foo)"
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr "Ephemeral コンテナ"
 
@@ -966,12 +970,12 @@ msgstr ""
 "デフォルトのモードは non-interactive です。もし標準入出力が両方ともターミナル"
 "の場合は interactive モードが選択されます (標準エラー出力は無視されます)。"
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr "失効日時: %s"
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr "失効日時: 失効しない"
 
@@ -1011,12 +1015,12 @@ msgstr "イメージのエクスポート中: %s"
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr "クラスタメンバへの接続に失敗しました"
 
@@ -1025,7 +1029,7 @@ msgstr "クラスタメンバへの接続に失敗しました"
 msgid "Failed to create alias %s"
 msgstr "エイリアス %s の作成に失敗しました"
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr "新しいコンテナ名が取得できません"
 
@@ -1047,7 +1051,7 @@ msgstr "Fast モード (--columns=nsacPt と同じ)"
 msgid "Filtering isn't supported yet"
 msgstr "情報表示のフィルタリングはまだサポートされていません"
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr "証明書のフィンガープリント: %s"
@@ -1068,11 +1072,11 @@ msgstr "コンテナを強制シャットダウンします"
 msgid "Force the removal of running containers"
 msgstr "稼働中のコンテナを強制的に削除します"
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr "強制的にローカルのUNIXソケットを使います"
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr "フォーマット (csv|json|table|yaml)"
 
@@ -1144,7 +1148,7 @@ msgstr "IPV6"
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1154,7 +1158,7 @@ msgstr "初めてこのマシンで LXD を使う場合、lxd init と実行す
 msgid "Ignore the container state"
 msgstr "コンテナの状態を無視します"
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr "イメージは更新済みです。"
 
@@ -1166,7 +1170,7 @@ msgstr "イメージのコピーが成功しました!"
 msgid "Image exported successfully!"
 msgstr "イメージのエクスポートが成功しました!"
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr "イメージ名を指定してください"
 
@@ -1175,12 +1179,12 @@ msgstr "イメージ名を指定してください"
 msgid "Image identifier missing: %s"
 msgstr "イメージ名を指定してください: %s"
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr "イメージは以下のフィンガープリントでインポートされました: %s"
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr "イメージの更新が成功しました!"
 
@@ -1241,7 +1245,7 @@ msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 "不正な設定項目のカラムフォーマットです (フィールド数が多すぎます): '%s'"
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr "不正なフォーマット %q"
@@ -1265,7 +1269,7 @@ msgid ""
 msgstr ""
 "'%s' は不正な名前です。空文字列は maxWidth を指定しているときのみ指定できます"
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr "引数の数が不正です"
 
@@ -1313,12 +1317,12 @@ msgstr "LXD - コマンドラインクライアント"
 msgid "LXD server isn't part of a cluster"
 msgstr "LXD サーバはクラスタの一部ではありません"
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr "最終使用: %s"
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr "最終使用: 未使用"
 
@@ -1492,11 +1496,11 @@ msgstr ""
 "指定するフィルタはイメージのハッシュ値の一部でもイメージのエイリアスの一部で"
 "も構いません。\n"
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr "イメージを一覧表示します"
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1736,11 +1740,11 @@ msgstr "メモリ (ピーク)"
 msgid "Memory usage:"
 msgstr "メモリ消費量:"
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr "マイグレーション API が失敗しました"
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr "マイグレーションが失敗しました"
 
@@ -1831,7 +1835,7 @@ msgstr ""
 "ダウンロード対象のファイルが複数ありますが、コピー先がディレクトリではありま"
 "せん"
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr "LXD サーバ内もしくはサーバ間でコンテナを移動します"
 
@@ -1839,7 +1843,7 @@ msgstr "LXD サーバ内もしくはサーバ間でコンテナを移動しま
 msgid "Move storage volumes between pools"
 msgstr "プール間でストレージボリュームを移動します"
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr "コンテナを移動します (スナップショットは移動しません)"
 
@@ -1908,7 +1912,7 @@ msgstr "新しいエイリアスを定義する"
 msgid "New aliases to add to the image"
 msgstr "イメージに新しいエイリアスを追加します"
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr "指定するデバイスに適用する新しいキー/値"
 
@@ -1945,7 +1949,7 @@ msgstr "\"カスタム\" のボリュームのみがスナップショットを
 msgid "Only https URLs are supported for simplestreams"
 msgstr "simplestreams は https の URL のみサポートします"
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr "リモートイメージのインポートは https:// のみをサポートします"
 
@@ -1958,6 +1962,11 @@ msgstr "管理対象のネットワークのみ変更できます"
 msgid "Operation %s deleted"
 msgstr "バックグラウンド操作 %s を削除しました"
 
+#: lxc/main.go:61
+#, fuzzy
+msgid "Override the source project"
+msgstr "現在のプロジェクトを切り替えます"
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr "ターミナルモードを上書きします (auto, interactive, non-interactive)"
@@ -1982,7 +1991,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1994,7 +2003,7 @@ msgstr "受信パケット"
 msgid "Packets sent"
 msgstr "送信パケット"
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr "%s のパスワード: "
@@ -2003,7 +2012,7 @@ msgstr "%s のパスワード: "
 msgid "Pause containers"
 msgstr "コンテナを一時停止します"
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -2026,7 +2035,7 @@ msgstr "再度エディタを起動するには Enter キーを押します"
 msgid "Pretty rendering"
 msgstr "見やすい形 (pretty) で表示します"
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr "ヘルプを表示します"
 
@@ -2034,7 +2043,7 @@ msgstr "ヘルプを表示します"
 msgid "Print the raw response"
 msgstr "レスポンスをそのまま表示します"
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr "バージョン番号を表示します"
 
@@ -2078,11 +2087,11 @@ msgstr "プロファイル %s が %s から削除されました"
 msgid "Profile %s renamed to %s"
 msgstr "プロファイル名 %s を %s に変更しました"
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr "新しいコンテナに適用するプロファイル"
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr "移動先のコンテナに適用するプロファイル"
 
@@ -2111,7 +2120,7 @@ msgstr "プロジェクト %s を削除しました"
 msgid "Project %s renamed to %s"
 msgstr "プロジェクト名 %s を %s に変更しました"
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr "プロパティ:"
 
@@ -2119,7 +2128,7 @@ msgstr "プロパティ:"
 msgid "Public image server"
 msgstr "Public なイメージサーバとして設定します"
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr "パブリック: %s"
@@ -2150,16 +2159,16 @@ msgstr "ファイル %s をコンテナ %s 内にコピーします: %%s"
 msgid "Recursively transfer files"
 msgstr "再帰的にファイルを転送します"
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr "イメージを更新します"
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, fuzzy, c-format
 msgid "Refreshing container: %s"
 msgstr "コンテナのインポート中: %s"
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr "イメージの更新中: %s"
@@ -2323,7 +2332,7 @@ msgstr "イメージの取得中: %s"
 msgid "Run command against all containers"
 msgstr "すべてのコンテナに対してコマンドを実行します"
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2420,11 +2429,11 @@ msgstr "プッシュ時にファイルのパーミションを設定します"
 msgid "Set the file's uid on push"
 msgstr "プッシュ時にファイルのuidを設定します"
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr "デバッグメッセージをすべて表示します"
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr "詳細な情報を出力します"
 
@@ -2456,11 +2465,11 @@ msgstr "バックグラウンド操作の詳細を表示します"
 msgid "Show full device configuration for containers or profiles"
 msgstr "コンテナもしくはプロファイルのデバイス設定をすべて表示します"
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr "イメージのプロパティを表示します"
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr "全てのコマンドを表示します (主なコマンドだけではなく)"
 
@@ -2516,7 +2525,7 @@ msgstr "ストレージプールで利用可能なリソースを表示します
 msgid "Show the used and free space in bytes"
 msgstr "使用量と空き容量を byte で表示します"
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr "イメージについての情報を表示します"
 
@@ -2524,7 +2533,7 @@ msgstr "イメージについての情報を表示します"
 msgid "Show useful information about storage pools"
 msgstr "ストレージプールの情報を表示します"
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr "サイズ: %.2fMB"
@@ -2542,7 +2551,7 @@ msgstr "スナップショット:"
 msgid "Some containers failed to %s"
 msgstr "一部のコンテナで %s が失敗しました"
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr "取得元:"
 
@@ -2597,7 +2606,7 @@ msgstr "ストレージプール %s を削除しました"
 msgid "Storage pool %s pending on member %s"
 msgstr "ストレージプール %s はメンバ %s 上でペンディング状態です"
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr "ストレージプール名"
 
@@ -2648,15 +2657,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr "--container-only と --target は同時に指定できません"
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr "--mode と --target は同時に指定できません"
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr "--stateless と --target は同時に指定できません"
 
@@ -2702,7 +2711,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr "プロファイルのデバイスが存在しません"
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr "移動元の LXD インスタンスはクラスタに属していません"
 
@@ -2725,7 +2734,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr "コンテナを強制停止するまでの時間"
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr "タイムスタンプ:"
 
@@ -2743,13 +2752,13 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr "コンソールから切り離すには <ctrl>+a q を押します"
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 "初めてコンテナを起動するには、\"lxc launch ubuntu:18.04\" と実行してみてくだ"
 "さい"
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 " --target オプションは、コピー先のリモートサーバがクラスタに属していなければ"
@@ -2759,20 +2768,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)"
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)"
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)。"
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr "コンテナを転送中: %s"
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr "イメージを転送中: %s"
@@ -2790,7 +2799,7 @@ msgstr "タイプ: ephemeral"
 msgid "Type: persistent"
 msgstr "タイプ: persistent"
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2808,7 +2817,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr "テンポラリファイルを作成できません: %v"
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr "未知のカラム名の短縮形です '%c' ('%s' 中)"
@@ -2818,7 +2827,7 @@ msgstr "未知のカラム名の短縮形です '%c' ('%s' 中)"
 msgid "Unknown file type '%s'"
 msgstr "未知のファイルタイプ '%s'"
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr "移動先のコンテナのすべてのプロファイルを削除します"
 
@@ -2850,7 +2859,7 @@ msgstr "ストレージプールの設定を削除します"
 msgid "Unset storage volume configuration keys"
 msgstr "ストレージボリュームの設定を削除します"
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr "アップロード日時: %s"
@@ -2905,11 +2914,11 @@ msgstr "-t と -T は同時に指定できません"
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr "--mode と同時に -t または -T は指定できません"
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr "--target オプションを使うときはコピー先のコンテナ名を指定してください"
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr "コピー元のコンテナ名を指定してください"
 
@@ -2985,7 +2994,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -3104,7 +3113,7 @@ msgstr ""
 "サーバから変更されたイメージ、コンテナ、スナップショットを取得できませんで\n"
 "した"
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr "無効"
 
@@ -3156,7 +3165,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr "有効"
 
@@ -3235,7 +3244,7 @@ msgstr ""
 msgid "info"
 msgstr "ストレージ情報"
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3268,7 +3277,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3467,7 +3476,7 @@ msgstr ""
 "lxc monitor --type=lifecycle\n"
 "    lifecycle イベントのみを表示します。"
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3616,7 +3625,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3632,7 +3641,7 @@ msgstr "名前"
 msgid "network"
 msgstr "network"
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3692,7 +3701,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 
@@ -3820,7 +3829,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3961,7 +3970,7 @@ msgstr "volume"
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
 
diff --git a/po/ko.po b/po/ko.po
index 570f667e26..cd9ce5bea4 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/lxd.pot b/po/lxd.pot
index 474e5ecb17..7461aeb9a3 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-11-18 18:32-0500\n"
+        "POT-Creation-Date: 2018-11-20 17:46-0500\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"
@@ -152,7 +152,7 @@ msgid   "### This is a yaml representation of the project.\n"
         "### Note that the name is shown but cannot be changed"
 msgstr  ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid   "%s (%d more)"
 msgstr  ""
@@ -176,23 +176,23 @@ msgstr  ""
 msgid   "(none)"
 msgstr  ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid   "--container-only can't be passed when the source is a snapshot"
 msgstr  ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid   "--refresh can only be used with containers"
 msgstr  ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid   "ALIAS"
 msgstr  ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid   "ALIASES"
 msgstr  ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid   "ARCH"
 msgstr  ""
 
@@ -251,11 +251,11 @@ msgstr  ""
 msgid   "Alias name missing"
 msgstr  ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid   "Aliases:"
 msgstr  ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid   "Architecture: %s"
 msgstr  ""
@@ -300,7 +300,7 @@ msgstr  ""
 msgid   "Authentication type '%s' not supported by server"
 msgstr  ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid   "Auto update: %s"
 msgstr  ""
@@ -318,17 +318,17 @@ msgstr  ""
 msgid   "Bad key/value pair: %s"
 msgstr  ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175 lxc/storage.go:123 lxc/storage_volume.go:506
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175 lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid   "Bad key=value pair: %s"
 msgstr  ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid   "Bad property: %s"
 msgstr  ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid   "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr  ""
@@ -369,12 +369,12 @@ msgstr  ""
 msgid   "CREATED AT"
 msgstr  ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid   "Cached: %s"
 msgstr  ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid   "Can't override configuration or profiles in local rename"
 msgstr  ""
 
@@ -434,7 +434,7 @@ msgstr  ""
 msgid   "Client version: %s\n"
 msgstr  ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259 lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106 lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581 lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307 lxc/storage_volume.go:467 lxc/storage_volume.go:544 lxc/storage_volume.go:787 lxc/storage_volume.go:984 lxc/storage_volume.go:1153 lxc/storage_volume.go:1183 lxc/storage_volume.go:1286 lxc/storage_volume.go:1369 lxc/storage_volume.go:1462
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106 lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581 lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307 lxc/storage_volume.go:467 lxc/storage_volume.go:544 lxc/storage_volume.go:787 lxc/storage_volume.go:984 lxc/storage_volume.go:1153 lxc/storage_volume.go:1183 lxc/storage_volume.go:1286 lxc/storage_volume.go:1369 lxc/storage_volume.go:1462
 msgid   "Cluster member name"
 msgstr  ""
 
@@ -442,22 +442,22 @@ msgstr  ""
 msgid   "Clustering enabled"
 msgstr  ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid   "Columns"
 msgstr  ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid   "Command line client for LXD"
 msgstr  ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid   "Command line client for LXD\n"
         "\n"
         "All of LXD's features can be driven through the various commands below.\n"
         "For help with any of those, simply call them with --help."
 msgstr  ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid   "Config key/value to apply to the new container"
 msgstr  ""
 
@@ -465,7 +465,7 @@ msgstr  ""
 msgid   "Config key/value to apply to the new project"
 msgstr  ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid   "Config key/value to apply to the target container"
 msgstr  ""
 
@@ -482,7 +482,7 @@ msgstr  ""
 msgid   "Container name is mandatory"
 msgstr  ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid   "Container name is: %s"
 msgstr  ""
@@ -492,7 +492,7 @@ msgstr  ""
 msgid   "Container published with fingerprint: %s"
 msgstr  ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid   "Copy a stateful container stateless"
 msgstr  ""
 
@@ -500,7 +500,7 @@ msgstr  ""
 msgid   "Copy aliases from source"
 msgstr  ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid   "Copy containers within or in between LXD instances"
 msgstr  ""
 
@@ -527,7 +527,7 @@ msgstr  ""
 msgid   "Copy storage volumes"
 msgstr  ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid   "Copy the container without its snapshots"
 msgstr  ""
 
@@ -535,6 +535,10 @@ msgstr  ""
 msgid   "Copy the volume without its snapshots"
 msgstr  ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid   "Copy to a project different from the source"
+msgstr  ""
+
 #: lxc/image.go:218
 #, c-format
 msgid   "Copying the image: %s"
@@ -600,11 +604,11 @@ msgstr  ""
 msgid   "Create storage pools"
 msgstr  ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid   "Create the container with no profiles applied"
 msgstr  ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid   "Created: %s"
 msgstr  ""
@@ -622,7 +626,7 @@ msgstr  ""
 msgid   "DATABASE"
 msgstr  ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861 lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861 lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid   "DESCRIPTION"
 msgstr  ""
 
@@ -678,7 +682,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:246 lxc/cluster.go:295 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:182 lxc/config_device.go:255 lxc/config_device.go:321 lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:589 lxc/config_device.go:657 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31 lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187 lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265 lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789 lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 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:25 lxc/info.go:29 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 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:328 lxc/network.go:378 lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729 lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034 lxc/network.go:1103 lxc/network.go:1165 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101 lxc/operation.go:177 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:165 lxc/profile.go:245 lxc/profile.go:301 lxc/profile.go:355 lxc/profile.go:405 lxc/profile.go:529 lxc/profile.go:577 lxc/profile.go:641 lxc/profile.go:717 lxc/profile.go:767 lxc/profile.go:826 lxc/profile.go:880 lxc/project.go:30 lxc/project.go:87 lxc/project.go:152 lxc/project.go:215 lxc/project.go:335 lxc/project.go:383 lxc/project.go:472 lxc/project.go:527 lxc/project.go:587 lxc/project.go:616 lxc/project.go:669 lxc/publish.go:34 lxc/query.go:30 lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:403 lxc/remote.go:439 lxc/remote.go:544 lxc/remote.go:606 lxc/remote.go:656 lxc/remote.go:694 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:496 lxc/storage.go:578 lxc/storage.go:650 lxc/storage.go:734 lxc/storage_volume.go:34 lxc/storage_volume.go:141 lxc/storage_volume.go:220 lxc/storage_volume.go:303 lxc/storage_volume.go:464 lxc/storage_volume.go:541 lxc/storage_volume.go:618 lxc/storage_volume.go:700 lxc/storage_volume.go:781 lxc/storage_volume.go:981 lxc/storage_volume.go:1070 lxc/storage_volume.go:1149 lxc/storage_volume.go:1180 lxc/storage_volume.go:1283 lxc/storage_volume.go:1360 lxc/storage_volume.go:1459 lxc/storage_volume.go:1490 lxc/storage_volume.go:1561 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:246 lxc/cluster.go:295 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:182 lxc/config_device.go:255 lxc/config_device.go:321 lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:589 lxc/config_device.go:657 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31 lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187 lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265 lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793 lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26 lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149 lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19 lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378 lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729 lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034 lxc/network.go:1103 lxc/network.go:1165 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101 lxc/operation.go:177 lxc/profile.go:30 lxc/profile.go:102 lxc/profile.go:165 lxc/profile.go:245 lxc/profile.go:301 lxc/profile.go:355 lxc/profile.go:405 lxc/profile.go:529 lxc/profile.go:577 lxc/profile.go:641 lxc/profile.go:717 lxc/profile.go:767 lxc/profile.go:826 lxc/profile.go:880 lxc/project.go:30 lxc/project.go:87 lxc/project.go:152 lxc/project.go:215 lxc/project.go:335 lxc/project.go:383 lxc/project.go:472 lxc/project.go:527 lxc/project.go:587 lxc/project.go:616 lxc/project.go:669 lxc/publish.go:34 lxc/query.go:30 lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:403 lxc/remote.go:439 lxc/remote.go:544 lxc/remote.go:606 lxc/remote.go:656 lxc/remote.go:694 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:21 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:496 lxc/storage.go:578 lxc/storage.go:650 lxc/storage.go:734 lxc/storage_volume.go:34 lxc/storage_volume.go:141 lxc/storage_volume.go:220 lxc/storage_volume.go:303 lxc/storage_volume.go:464 lxc/storage_volume.go:541 lxc/storage_volume.go:618 lxc/storage_volume.go:700 lxc/storage_volume.go:781 lxc/storage_volume.go:981 lxc/storage_volume.go:1070 lxc/storage_volume.go:1149 lxc/storage_volume.go:1180 lxc/storage_volume.go:1283 lxc/storage_volume.go:1360 lxc/storage_volume.go:1459 lxc/storage_volume.go:1490 lxc/storage_volume.go:1561 lxc/version.go:22
 msgid   "Description"
 msgstr  ""
 
@@ -734,7 +738,7 @@ msgstr  ""
 msgid   "Disk usage:"
 msgstr  ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid   "Don't show progress information"
 msgstr  ""
 
@@ -786,7 +790,7 @@ msgstr  ""
 msgid   "Edit storage volume configurations as YAML"
 msgstr  ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid   "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr  ""
@@ -810,7 +814,7 @@ msgstr  ""
 msgid   "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr  ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid   "Ephemeral container"
 msgstr  ""
 
@@ -840,12 +844,12 @@ msgid   "Execute commands in containers\n"
         "Mode defaults to non-interactive, interactive mode is selected if both stdin AND stdout are terminals (stderr is ignored)."
 msgstr  ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid   "Expires: %s"
 msgstr  ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid   "Expires: never"
 msgstr  ""
 
@@ -881,11 +885,11 @@ msgstr  ""
 msgid   "FILENAME"
 msgstr  ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938 lxc/image_alias.go:229
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942 lxc/image_alias.go:229
 msgid   "FINGERPRINT"
 msgstr  ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid   "Failed to connect to cluster member"
 msgstr  ""
 
@@ -894,7 +898,7 @@ msgstr  ""
 msgid   "Failed to create alias %s"
 msgstr  ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid   "Failed to get the new container name"
 msgstr  ""
 
@@ -916,7 +920,7 @@ msgstr  ""
 msgid   "Filtering isn't supported yet"
 msgstr  ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid   "Fingerprint: %s"
 msgstr  ""
@@ -937,11 +941,11 @@ msgstr  ""
 msgid   "Force the removal of running containers"
 msgstr  ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid   "Force using the local unix socket"
 msgstr  ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid   "Format (csv|json|table|yaml)"
 msgstr  ""
 
@@ -1013,7 +1017,7 @@ msgstr  ""
 msgid   "ISSUE DATE"
 msgstr  ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid   "If this is your first time running LXD on this machine, you should also run: lxd init"
 msgstr  ""
 
@@ -1021,7 +1025,7 @@ msgstr  ""
 msgid   "Ignore the container state"
 msgstr  ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid   "Image already up to date."
 msgstr  ""
 
@@ -1033,7 +1037,7 @@ msgstr  ""
 msgid   "Image exported successfully!"
 msgstr  ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid   "Image identifier missing"
 msgstr  ""
 
@@ -1042,12 +1046,12 @@ msgstr  ""
 msgid   "Image identifier missing: %s"
 msgstr  ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid   "Image imported with fingerprint: %s"
 msgstr  ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid   "Image refreshed successfully!"
 msgstr  ""
 
@@ -1101,7 +1105,7 @@ msgstr  ""
 msgid   "Invalid config key column format (too many fields): '%s'"
 msgstr  ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid   "Invalid format %q"
 msgstr  ""
@@ -1121,7 +1125,7 @@ msgstr  ""
 msgid   "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr  ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid   "Invalid number of arguments"
 msgstr  ""
 
@@ -1169,12 +1173,12 @@ msgstr  ""
 msgid   "LXD server isn't part of a cluster"
 msgstr  ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid   "Last used: %s"
 msgstr  ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid   "Last used: never"
 msgstr  ""
 
@@ -1282,11 +1286,11 @@ msgid   "List image aliases\n"
         "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr  ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid   "List images"
 msgstr  ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid   "List images\n"
         "\n"
         "Filters may be of the <key>=<value> form for property based filtering,\n"
@@ -1483,11 +1487,11 @@ msgstr  ""
 msgid   "Memory usage:"
 msgstr  ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid   "Migration API failure"
 msgstr  ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid   "Migration operation failure"
 msgstr  ""
 
@@ -1553,7 +1557,7 @@ msgstr  ""
 msgid   "More than one file to download, but target is not a directory"
 msgstr  ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid   "Move containers within or in between LXD instances"
 msgstr  ""
 
@@ -1561,7 +1565,7 @@ msgstr  ""
 msgid   "Move storage volumes between pools"
 msgstr  ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid   "Move the container without its snapshots"
 msgstr  ""
 
@@ -1627,7 +1631,7 @@ msgstr  ""
 msgid   "New aliases to add to the image"
 msgstr  ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid   "New key/value to apply to a specific device"
 msgstr  ""
 
@@ -1664,7 +1668,7 @@ msgstr  ""
 msgid   "Only https URLs are supported for simplestreams"
 msgstr  ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid   "Only https:// is supported for remote image import"
 msgstr  ""
 
@@ -1677,6 +1681,10 @@ msgstr  ""
 msgid   "Operation %s deleted"
 msgstr  ""
 
+#: lxc/main.go:61
+msgid   "Override the source project"
+msgstr  ""
+
 #: lxc/exec.go:53
 msgid   "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr  ""
@@ -1701,7 +1709,7 @@ msgstr  ""
 msgid   "PROTOCOL"
 msgstr  ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid   "PUBLIC"
 msgstr  ""
 
@@ -1713,7 +1721,7 @@ msgstr  ""
 msgid   "Packets sent"
 msgstr  ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid   "Password for %s: "
 msgstr  ""
@@ -1722,7 +1730,7 @@ msgstr  ""
 msgid   "Pause containers"
 msgstr  ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid   "Perform an incremental copy"
 msgstr  ""
 
@@ -1743,7 +1751,7 @@ msgstr  ""
 msgid   "Pretty rendering"
 msgstr  ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid   "Print help"
 msgstr  ""
 
@@ -1751,7 +1759,7 @@ msgstr  ""
 msgid   "Print the raw response"
 msgstr  ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid   "Print version number"
 msgstr  ""
 
@@ -1795,11 +1803,11 @@ msgstr  ""
 msgid   "Profile %s renamed to %s"
 msgstr  ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid   "Profile to apply to the new container"
 msgstr  ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid   "Profile to apply to the target container"
 msgstr  ""
 
@@ -1828,7 +1836,7 @@ msgstr  ""
 msgid   "Project %s renamed to %s"
 msgstr  ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid   "Properties:"
 msgstr  ""
 
@@ -1836,7 +1844,7 @@ msgstr  ""
 msgid   "Public image server"
 msgstr  ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid   "Public: %s"
 msgstr  ""
@@ -1867,16 +1875,16 @@ msgstr  ""
 msgid   "Recursively transfer files"
 msgstr  ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid   "Refresh images"
 msgstr  ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid   "Refreshing container: %s"
 msgstr  ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid   "Refreshing the image: %s"
 msgstr  ""
@@ -2029,7 +2037,7 @@ msgstr  ""
 msgid   "Run command against all containers"
 msgstr  ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid   "SIZE"
 msgstr  ""
 
@@ -2126,11 +2134,11 @@ msgstr  ""
 msgid   "Set the file's uid on push"
 msgstr  ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid   "Show all debug messages"
 msgstr  ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid   "Show all information messages"
 msgstr  ""
 
@@ -2162,11 +2170,11 @@ msgstr  ""
 msgid   "Show full device configuration for containers or profiles"
 msgstr  ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid   "Show image properties"
 msgstr  ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid   "Show less common commands"
 msgstr  ""
 
@@ -2222,7 +2230,7 @@ msgstr  ""
 msgid   "Show the used and free space in bytes"
 msgstr  ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid   "Show useful information about images"
 msgstr  ""
 
@@ -2230,7 +2238,7 @@ msgstr  ""
 msgid   "Show useful information about storage pools"
 msgstr  ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid   "Size: %.2fMB"
 msgstr  ""
@@ -2248,7 +2256,7 @@ msgstr  ""
 msgid   "Some containers failed to %s"
 msgstr  ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid   "Source:"
 msgstr  ""
 
@@ -2303,7 +2311,7 @@ msgstr  ""
 msgid   "Storage pool %s pending on member %s"
 msgstr  ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid   "Storage pool name"
 msgstr  ""
 
@@ -2353,15 +2361,15 @@ msgstr  ""
 msgid   "TYPE"
 msgstr  ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid   "The --container-only flag can't be used with --target"
 msgstr  ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid   "The --mode flag can't be used with --target"
 msgstr  ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid   "The --stateless flag can't be used with --target"
 msgstr  ""
 
@@ -2399,7 +2407,7 @@ msgstr  ""
 msgid   "The profile device doesn't exist"
 msgstr  ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid   "The source LXD instance is not clustered"
 msgstr  ""
 
@@ -2419,7 +2427,7 @@ msgstr  ""
 msgid   "Time to wait for the container before killing it"
 msgstr  ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid   "Timestamps:"
 msgstr  ""
 
@@ -2435,11 +2443,11 @@ msgstr  ""
 msgid   "To detach from the console, press: <ctrl>+a q"
 msgstr  ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid   "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr  ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid   "To use --target, the destination remote must be a cluster"
 msgstr  ""
 
@@ -2447,20 +2455,20 @@ msgstr  ""
 msgid   "Transfer mode, one of pull (default), push or relay"
 msgstr  ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid   "Transfer mode. One of pull (default), push or relay"
 msgstr  ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid   "Transfer mode. One of pull (default), push or relay."
 msgstr  ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid   "Transferring container: %s"
 msgstr  ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid   "Transferring image: %s"
 msgstr  ""
@@ -2478,7 +2486,7 @@ msgstr  ""
 msgid   "Type: persistent"
 msgstr  ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid   "UPLOAD DATE"
 msgstr  ""
 
@@ -2495,7 +2503,7 @@ msgstr  ""
 msgid   "Unable to create a temporary file: %v"
 msgstr  ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid   "Unknown column shorthand char '%c' in '%s'"
 msgstr  ""
@@ -2505,7 +2513,7 @@ msgstr  ""
 msgid   "Unknown file type '%s'"
 msgstr  ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid   "Unset all profiles on the target container"
 msgstr  ""
 
@@ -2537,7 +2545,7 @@ msgstr  ""
 msgid   "Unset storage volume configuration keys"
 msgstr  ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid   "Uploaded: %s"
 msgstr  ""
@@ -2582,11 +2590,11 @@ msgstr  ""
 msgid   "You can't pass -t or -T at the same time as --mode"
 msgstr  ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid   "You must specify a destination container name when using --target"
 msgstr  ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid   "You must specify a source container name"
 msgstr  ""
 
@@ -2658,7 +2666,7 @@ msgstr  ""
 msgid   "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid   "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr  ""
 
@@ -2770,7 +2778,7 @@ msgstr  ""
 msgid   "didn't get any affected image, container or snapshot from server"
 msgstr  ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid   "disabled"
 msgstr  ""
 
@@ -2822,7 +2830,7 @@ msgstr  ""
 msgid   "enable [<remote>:] <name>"
 msgstr  ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid   "enabled"
 msgstr  ""
 
@@ -2895,7 +2903,7 @@ msgstr  ""
 msgid   "info"
 msgstr  ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid   "info [<remote>:]<image>"
 msgstr  ""
 
@@ -2927,7 +2935,7 @@ msgstr  ""
 msgid   "list [<remote>:]"
 msgstr  ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid   "list [<remote>:] [<filter>...]"
 msgstr  ""
 
@@ -3051,7 +3059,7 @@ msgid   "lxc monitor --type=logging\n"
         "    Only show lifecycle events."
 msgstr  ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid   "lxc move [<remote>:]<source container> [<remote>:][<destination container>] [--container-only]\n"
         "    Move a container between two hosts, renaming it if destination name differs.\n"
         "\n"
@@ -3140,7 +3148,7 @@ msgstr  ""
 msgid   "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr  ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid   "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/<snapshot>]]"
 msgstr  ""
 
@@ -3152,7 +3160,7 @@ msgstr  ""
 msgid   "network"
 msgstr  ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid   "no"
 msgstr  ""
 
@@ -3200,7 +3208,7 @@ msgstr  ""
 msgid   "query [<remote>:]<API path>"
 msgstr  ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid   "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr  ""
 
@@ -3324,7 +3332,7 @@ msgstr  ""
 msgid   "show [<remote>:]<container|profile>"
 msgstr  ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid   "show [<remote>:]<image>"
 msgstr  ""
 
@@ -3465,7 +3473,7 @@ msgstr  ""
 msgid   "y"
 msgstr  ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid   "yes"
 msgstr  ""
 
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 239098c394..77073d9ea2 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 87d8ee57a0..8875bf3548 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: 2018-09-24 23:21+0000\n"
 "Last-Translator: idef1x <sjoerd at sjomar.eu>\n"
 "Language-Team: Dutch <https://hosted.weblate.org/projects/linux-containers/"
@@ -190,7 +190,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -214,23 +214,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -289,11 +289,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -339,7 +339,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -357,18 +357,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -409,12 +409,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -475,7 +475,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -491,15 +491,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -507,7 +507,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -515,7 +515,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -534,7 +534,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -544,7 +544,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -552,7 +552,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -580,7 +580,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -588,6 +588,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -654,11 +658,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -676,7 +680,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -747,15 +751,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -837,7 +841,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -889,7 +893,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -917,7 +921,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -949,12 +953,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -991,12 +995,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -1005,7 +1009,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1027,7 +1031,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1048,11 +1052,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1124,7 +1128,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1134,7 +1138,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1146,7 +1150,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1155,12 +1159,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1215,7 +1219,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1236,7 +1240,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1284,12 +1288,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1402,11 +1406,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1607,11 +1611,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1697,7 +1701,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1705,7 +1709,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1774,7 +1778,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1811,7 +1815,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1824,6 +1828,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1848,7 +1856,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1860,7 +1868,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1869,7 +1877,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1892,7 +1900,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1900,7 +1908,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1944,11 +1952,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1977,7 +1985,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1985,7 +1993,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2016,16 +2024,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2182,7 +2190,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2279,11 +2287,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2315,11 +2323,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2375,7 +2383,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2383,7 +2391,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2401,7 +2409,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2456,7 +2464,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2507,15 +2515,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2556,7 +2564,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2577,7 +2585,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2593,11 +2601,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2605,20 +2613,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2636,7 +2644,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2654,7 +2662,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2664,7 +2672,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2696,7 +2704,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2746,11 +2754,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2826,7 +2834,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2940,7 +2948,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2992,7 +3000,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3069,7 +3077,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3102,7 +3110,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3244,7 +3252,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3348,7 +3356,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3362,7 +3370,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3416,7 +3424,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3542,7 +3550,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3683,6 +3691,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/pa.po b/po/pa.po
index 5adf6b5c95..67cf59d56e 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/pl.po b/po/pl.po
index d66331f55a..1599896f6e 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: 2018-09-08 19:22+0000\n"
 "Last-Translator: m4sk1n <me at m4sk.in>\n"
 "Language-Team: Polish <https://hosted.weblate.org/projects/linux-containers/"
@@ -209,7 +209,7 @@ msgstr ""
 "###\n"
 "### Nazwa jest widoczna, ale nie może zostać zmieniona"
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -233,23 +233,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -308,11 +308,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -376,18 +376,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -428,12 +428,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -494,7 +494,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -510,15 +510,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -526,7 +526,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -534,7 +534,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -553,7 +553,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -563,7 +563,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -571,7 +571,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -599,7 +599,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -607,6 +607,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -673,11 +677,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -695,7 +699,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -766,15 +770,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -856,7 +860,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -908,7 +912,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -936,7 +940,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -968,12 +972,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -1010,12 +1014,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -1024,7 +1028,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1046,7 +1050,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1067,11 +1071,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1143,7 +1147,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1153,7 +1157,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1165,7 +1169,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1174,12 +1178,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1234,7 +1238,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1255,7 +1259,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1303,12 +1307,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1421,11 +1425,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1626,11 +1630,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1716,7 +1720,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1724,7 +1728,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1793,7 +1797,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1830,7 +1834,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1843,6 +1847,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1867,7 +1875,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1879,7 +1887,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1888,7 +1896,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1911,7 +1919,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1919,7 +1927,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1963,11 +1971,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1996,7 +2004,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -2004,7 +2012,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2035,16 +2043,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2201,7 +2209,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2298,11 +2306,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2334,11 +2342,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2394,7 +2402,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2402,7 +2410,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2420,7 +2428,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2475,7 +2483,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2526,15 +2534,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2575,7 +2583,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2596,7 +2604,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2612,11 +2620,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2624,20 +2632,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2655,7 +2663,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2673,7 +2681,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2683,7 +2691,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2715,7 +2723,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2765,11 +2773,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2845,7 +2853,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2959,7 +2967,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -3011,7 +3019,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3088,7 +3096,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3121,7 +3129,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3263,7 +3271,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3367,7 +3375,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3381,7 +3389,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3435,7 +3443,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3561,7 +3569,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3702,6 +3710,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index a1af2ef71e..121eedf5fb 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: 2018-10-03 13:37+0000\n"
 "Last-Translator: Tiago A. Reul <tiago at reul.space>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -221,7 +221,7 @@ msgstr ""
 "###   source: /home/chb/mnt/lxd_test/default.img\n"
 "###   zfs.pool_name: default"
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -245,23 +245,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -320,11 +320,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -370,7 +370,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -388,18 +388,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -440,12 +440,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -506,7 +506,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -522,15 +522,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -538,7 +538,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -546,7 +546,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -565,7 +565,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -575,7 +575,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -583,7 +583,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -611,7 +611,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -619,6 +619,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -685,11 +689,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -707,7 +711,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -778,15 +782,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -868,7 +872,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -921,7 +925,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -949,7 +953,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -981,12 +985,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -1023,12 +1027,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -1037,7 +1041,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1059,7 +1063,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1080,11 +1084,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1157,7 +1161,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1167,7 +1171,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1179,7 +1183,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr "Imagem exportada com sucesso!"
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr "Falta o identificador da imagem"
 
@@ -1188,12 +1192,12 @@ msgstr "Falta o identificador da imagem"
 msgid "Image identifier missing: %s"
 msgstr "Falta o identificador da imagem: %s"
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1248,7 +1252,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1269,7 +1273,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1317,12 +1321,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1435,11 +1439,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1640,11 +1644,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1730,7 +1734,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1738,7 +1742,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1807,7 +1811,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1844,7 +1848,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1857,6 +1861,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1881,7 +1889,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1893,7 +1901,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1902,7 +1910,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1925,7 +1933,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1933,7 +1941,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1977,11 +1985,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -2010,7 +2018,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -2018,7 +2026,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2049,16 +2057,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, fuzzy, c-format
 msgid "Refreshing container: %s"
 msgstr "Editar arquivos no container"
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2215,7 +2223,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2313,11 +2321,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2349,11 +2357,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2409,7 +2417,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2417,7 +2425,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2435,7 +2443,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2490,7 +2498,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2541,15 +2549,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2590,7 +2598,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2611,7 +2619,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2627,11 +2635,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2639,20 +2647,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2670,7 +2678,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2688,7 +2696,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2698,7 +2706,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2731,7 +2739,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2781,11 +2789,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2861,7 +2869,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2975,7 +2983,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -3027,7 +3035,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3104,7 +3112,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3137,7 +3145,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3279,7 +3287,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3383,7 +3391,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3397,7 +3405,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3451,7 +3459,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3577,7 +3585,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3718,6 +3726,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/ru.po b/po/ru.po
index a8e108d0e5..1245fed1db 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\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/"
@@ -270,7 +270,7 @@ msgstr ""
 "###\n"
 "### Обратите внимание, что имя отображается, но не может быть изменено"
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -294,24 +294,24 @@ msgstr ""
 msgid "(none)"
 msgstr "(пусто)"
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr "ПСЕВДОНИМ"
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 #, fuzzy
 msgid "ALIASES"
 msgstr "ПСЕВДОНИМ"
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr "ARCH"
 
@@ -371,11 +371,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr "Псевдонимы:"
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr "Архитектура: %s"
@@ -421,7 +421,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr "Авто-обновление: %s"
@@ -439,18 +439,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -493,12 +493,12 @@ msgstr "СОЗДАН"
 msgid "CREATED AT"
 msgstr "СОЗДАН"
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -559,7 +559,7 @@ msgstr "Сертификат клиента хранится на сервере
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -575,15 +575,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr "Столбцы"
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -591,7 +591,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -599,7 +599,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -618,7 +618,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr "Имя контейнера является обязательным"
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr "Имя контейнера: %s"
@@ -628,7 +628,7 @@ msgstr "Имя контейнера: %s"
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -636,7 +636,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr "Копировать псевдонимы из источника"
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -665,7 +665,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -673,6 +673,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -743,12 +747,12 @@ msgstr ""
 msgid "Create storage pools"
 msgstr "Копирование образа: %s"
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 #, fuzzy
 msgid "Create the container with no profiles applied"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -766,7 +770,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -840,15 +844,15 @@ msgstr "Копирование образа: %s"
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -931,7 +935,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr " Использование диска:"
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -984,7 +988,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1012,7 +1016,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -1044,12 +1048,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -1089,12 +1093,12 @@ msgstr "Копирование образа: %s"
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -1103,7 +1107,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1125,7 +1129,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1146,11 +1150,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1222,7 +1226,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1233,7 +1237,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1245,7 +1249,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1316,7 +1320,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1337,7 +1341,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1385,12 +1389,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1505,11 +1509,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1715,11 +1719,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr " Использование памяти:"
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1808,7 +1812,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1817,7 +1821,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr "Копирование образа: %s"
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1887,7 +1891,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1925,7 +1929,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1938,6 +1942,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1962,7 +1970,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1974,7 +1982,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, fuzzy, c-format
 msgid "Password for %s: "
 msgstr "Пароль администратора для %s: "
@@ -1983,7 +1991,7 @@ msgstr "Пароль администратора для %s: "
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -2006,7 +2014,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -2014,7 +2022,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -2058,11 +2066,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -2091,7 +2099,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -2099,7 +2107,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -2130,17 +2138,17 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 #, fuzzy
 msgid "Refresh images"
 msgstr "Копирование образа: %s"
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, fuzzy, c-format
 msgid "Refreshing container: %s"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, fuzzy, c-format
 msgid "Refreshing the image: %s"
 msgstr "Копирование образа: %s"
@@ -2302,7 +2310,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2399,11 +2407,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2437,11 +2445,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2497,7 +2505,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2505,7 +2513,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2524,7 +2532,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2580,7 +2588,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2632,15 +2640,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2681,7 +2689,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2702,7 +2710,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2718,11 +2726,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2730,20 +2738,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2761,7 +2769,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2779,7 +2787,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2789,7 +2797,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2821,7 +2829,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2871,11 +2879,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2952,7 +2960,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -3086,7 +3094,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -3142,7 +3150,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3231,7 +3239,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3264,7 +3272,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3406,7 +3414,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3510,7 +3518,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 #, fuzzy
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
@@ -3528,7 +3536,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3594,7 +3602,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 #, fuzzy
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
@@ -3744,7 +3752,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3906,7 +3914,7 @@ msgstr "Столбцы"
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr "да"
 
diff --git a/po/sr.po b/po/sr.po
index f365c5caf0..6101f0c3ec 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 7197b76a58..a669720091 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 9fe6f89c7e..ed726b4aeb 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 04b6502619..0976bf7768 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/zh.po b/po/zh.po
index 791735a0fb..9521ff3dd9 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: 2018-09-11 19:15+0000\n"
 "Last-Translator: 0x0916 <w at laoqinren.net>\n"
 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
@@ -163,7 +163,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -187,23 +187,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -262,11 +262,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -312,7 +312,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -330,18 +330,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -382,12 +382,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -448,7 +448,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -464,15 +464,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -480,7 +480,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -488,7 +488,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -507,7 +507,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -517,7 +517,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -525,7 +525,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -553,7 +553,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -561,6 +561,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -627,11 +631,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -649,7 +653,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -720,15 +724,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -810,7 +814,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -862,7 +866,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -890,7 +894,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -922,12 +926,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -964,12 +968,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -978,7 +982,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -1000,7 +1004,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1021,11 +1025,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1097,7 +1101,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1107,7 +1111,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1119,7 +1123,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1128,12 +1132,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1188,7 +1192,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1209,7 +1213,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1257,12 +1261,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1375,11 +1379,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1580,11 +1584,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1670,7 +1674,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1678,7 +1682,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1747,7 +1751,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1784,7 +1788,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1797,6 +1801,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1821,7 +1829,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1833,7 +1841,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1842,7 +1850,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1865,7 +1873,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1873,7 +1881,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1917,11 +1925,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1950,7 +1958,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1958,7 +1966,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1989,16 +1997,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2155,7 +2163,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2252,11 +2260,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2288,11 +2296,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2348,7 +2356,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2356,7 +2364,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2374,7 +2382,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2429,7 +2437,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2480,15 +2488,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2529,7 +2537,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2550,7 +2558,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2566,11 +2574,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2578,20 +2586,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2609,7 +2617,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2627,7 +2635,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2637,7 +2645,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2669,7 +2677,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2719,11 +2727,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2799,7 +2807,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2913,7 +2921,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2965,7 +2973,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3042,7 +3050,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3075,7 +3083,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3217,7 +3225,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3321,7 +3329,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3335,7 +3343,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3389,7 +3397,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3515,7 +3523,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3656,6 +3664,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index 65861f4057..b9e030f5a6 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-11-18 18:32-0500\n"
+"POT-Creation-Date: 2018-11-20 17:46-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -160,7 +160,7 @@ msgid ""
 "### Note that the name is shown but cannot be changed"
 msgstr ""
 
-#: lxc/image.go:969
+#: lxc/image.go:973
 #, c-format
 msgid "%s (%d more)"
 msgstr ""
@@ -184,23 +184,23 @@ msgstr ""
 msgid "(none)"
 msgstr ""
 
-#: lxc/copy.go:144
+#: lxc/copy.go:152
 msgid "--container-only can't be passed when the source is a snapshot"
 msgstr ""
 
-#: lxc/copy.go:155
+#: lxc/copy.go:163
 msgid "--refresh can only be used with containers"
 msgstr ""
 
-#: lxc/alias.go:127 lxc/image.go:935 lxc/image_alias.go:228
+#: lxc/alias.go:127 lxc/image.go:939 lxc/image_alias.go:228
 msgid "ALIAS"
 msgstr ""
 
-#: lxc/image.go:936
+#: lxc/image.go:940
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/image.go:941
+#: lxc/image.go:945
 msgid "ARCH"
 msgstr ""
 
@@ -259,11 +259,11 @@ msgstr ""
 msgid "Alias name missing"
 msgstr ""
 
-#: lxc/image.go:867
+#: lxc/image.go:871
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:839 lxc/info.go:133
+#: lxc/image.go:843 lxc/info.go:133
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Authentication type '%s' not supported by server"
 msgstr ""
 
-#: lxc/image.go:877
+#: lxc/image.go:881
 #, c-format
 msgid "Auto update: %s"
 msgstr ""
@@ -327,18 +327,18 @@ msgstr ""
 msgid "Bad key/value pair: %s"
 msgstr ""
 
-#: lxc/copy.go:115 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
+#: lxc/copy.go:123 lxc/init.go:124 lxc/project.go:122 lxc/publish.go:175
 #: lxc/storage.go:123 lxc/storage_volume.go:506
 #, c-format
 msgid "Bad key=value pair: %s"
 msgstr ""
 
-#: lxc/image.go:684
+#: lxc/image.go:688
 #, c-format
 msgid "Bad property: %s"
 msgstr ""
 
-#: lxc/copy.go:126
+#: lxc/copy.go:134
 #, c-format
 msgid "Bad syntax, expecting <device>,<key>=<value>: %s"
 msgstr ""
@@ -379,12 +379,12 @@ msgstr ""
 msgid "CREATED AT"
 msgstr ""
 
-#: lxc/image.go:876
+#: lxc/image.go:880
 #, c-format
 msgid "Cached: %s"
 msgstr ""
 
-#: lxc/move.go:106
+#: lxc/move.go:108
 msgid "Can't override configuration or profiles in local rename"
 msgstr ""
 
@@ -445,7 +445,7 @@ msgstr ""
 msgid "Client version: %s\n"
 msgstr ""
 
-#: lxc/copy.go:51 lxc/init.go:48 lxc/move.go:57 lxc/network.go:259
+#: lxc/copy.go:52 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259
 #: lxc/network.go:674 lxc/network.go:1037 lxc/network.go:1106
 #: lxc/network.go:1168 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:581
 #: lxc/storage.go:654 lxc/storage.go:737 lxc/storage_volume.go:307
@@ -461,15 +461,15 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:926 lxc/list.go:114
+#: lxc/image.go:930 lxc/list.go:114
 msgid "Columns"
 msgstr ""
 
-#: lxc/main.go:47
+#: lxc/main.go:48
 msgid "Command line client for LXD"
 msgstr ""
 
-#: lxc/main.go:48
+#: lxc/main.go:49
 msgid ""
 "Command line client for LXD\n"
 "\n"
@@ -477,7 +477,7 @@ msgid ""
 "For help with any of those, simply call them with --help."
 msgstr ""
 
-#: lxc/copy.go:43 lxc/init.go:42
+#: lxc/copy.go:44 lxc/init.go:42
 msgid "Config key/value to apply to the new container"
 msgstr ""
 
@@ -485,7 +485,7 @@ msgstr ""
 msgid "Config key/value to apply to the new project"
 msgstr ""
 
-#: lxc/move.go:49
+#: lxc/move.go:50
 msgid "Config key/value to apply to the target container"
 msgstr ""
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Container name is mandatory"
 msgstr ""
 
-#: lxc/copy.go:397 lxc/init.go:239
+#: lxc/copy.go:405 lxc/init.go:239
 #, c-format
 msgid "Container name is: %s"
 msgstr ""
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Container published with fingerprint: %s"
 msgstr ""
 
-#: lxc/copy.go:49 lxc/move.go:55
+#: lxc/copy.go:50 lxc/move.go:56
 msgid "Copy a stateful container stateless"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "Copy aliases from source"
 msgstr ""
 
-#: lxc/copy.go:38 lxc/copy.go:39
+#: lxc/copy.go:39 lxc/copy.go:40
 msgid "Copy containers within or in between LXD instances"
 msgstr ""
 
@@ -550,7 +550,7 @@ msgstr ""
 msgid "Copy storage volumes"
 msgstr ""
 
-#: lxc/copy.go:48
+#: lxc/copy.go:49
 msgid "Copy the container without its snapshots"
 msgstr ""
 
@@ -558,6 +558,10 @@ msgstr ""
 msgid "Copy the volume without its snapshots"
 msgstr ""
 
+#: lxc/copy.go:53 lxc/move.go:59
+msgid "Copy to a project different from the source"
+msgstr ""
+
 #: lxc/image.go:218
 #, c-format
 msgid "Copying the image: %s"
@@ -624,11 +628,11 @@ msgstr ""
 msgid "Create storage pools"
 msgstr ""
 
-#: lxc/copy.go:52 lxc/init.go:49
+#: lxc/copy.go:54 lxc/init.go:49
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:845 lxc/info.go:135
+#: lxc/image.go:849 lxc/info.go:135
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -646,7 +650,7 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:940 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
+#: lxc/image.go:944 lxc/image_alias.go:230 lxc/list.go:459 lxc/network.go:861
 #: lxc/operation.go:156 lxc/storage.go:550 lxc/storage_volume.go:1122
 msgid "DESCRIPTION"
 msgstr ""
@@ -717,15 +721,15 @@ msgstr ""
 #: 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:39 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
+#: lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31
 #: lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187
 #: lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265
-#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:789
-#: lxc/image.go:903 lxc/image.go:1232 lxc/image.go:1309 lxc/image_alias.go:26
+#: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
+#: lxc/image.go:907 lxc/image.go:1236 lxc/image.go:1313 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
 #: lxc/image_alias.go:250 lxc/import.go:25 lxc/info.go:29 lxc/init.go:35
-#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:48 lxc/manpage.go:19
-#: lxc/monitor.go:31 lxc/move.go:36 lxc/network.go:34 lxc/network.go:110
+#: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:49 lxc/manpage.go:19
+#: lxc/monitor.go:31 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
 #: lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729
 #: lxc/network.go:799 lxc/network.go:919 lxc/network.go:984 lxc/network.go:1034
@@ -807,7 +811,7 @@ msgstr ""
 msgid "Disk usage:"
 msgstr ""
 
-#: lxc/main.go:62
+#: lxc/main.go:64
 msgid "Don't show progress information"
 msgstr ""
 
@@ -859,7 +863,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:951 lxc/list.go:500
+#: lxc/image.go:955 lxc/list.go:500
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -887,7 +891,7 @@ msgstr ""
 msgid "Environment variable to set (e.g. HOME=/home/foo)"
 msgstr ""
 
-#: lxc/copy.go:46 lxc/init.go:44
+#: lxc/copy.go:47 lxc/init.go:44
 msgid "Ephemeral container"
 msgstr ""
 
@@ -919,12 +923,12 @@ msgid ""
 "AND stdout are terminals (stderr is ignored)."
 msgstr ""
 
-#: lxc/image.go:851
+#: lxc/image.go:855
 #, c-format
 msgid "Expires: %s"
 msgstr ""
 
-#: lxc/image.go:853
+#: lxc/image.go:857
 msgid "Expires: never"
 msgstr ""
 
@@ -961,12 +965,12 @@ msgstr ""
 msgid "FILENAME"
 msgstr ""
 
-#: lxc/config_trust.go:174 lxc/image.go:937 lxc/image.go:938
+#: lxc/config_trust.go:174 lxc/image.go:941 lxc/image.go:942
 #: lxc/image_alias.go:229
 msgid "FINGERPRINT"
 msgstr ""
 
-#: lxc/move.go:214
+#: lxc/move.go:217
 msgid "Failed to connect to cluster member"
 msgstr ""
 
@@ -975,7 +979,7 @@ msgstr ""
 msgid "Failed to create alias %s"
 msgstr ""
 
-#: lxc/copy.go:392
+#: lxc/copy.go:400
 msgid "Failed to get the new container name"
 msgstr ""
 
@@ -997,7 +1001,7 @@ msgstr ""
 msgid "Filtering isn't supported yet"
 msgstr ""
 
-#: lxc/image.go:837
+#: lxc/image.go:841
 #, c-format
 msgid "Fingerprint: %s"
 msgstr ""
@@ -1018,11 +1022,11 @@ msgstr ""
 msgid "Force the removal of running containers"
 msgstr ""
 
-#: lxc/main.go:59
+#: lxc/main.go:60
 msgid "Force using the local unix socket"
 msgstr ""
 
-#: lxc/image.go:927 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
+#: lxc/image.go:931 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
@@ -1094,7 +1098,7 @@ msgstr ""
 msgid "ISSUE DATE"
 msgstr ""
 
-#: lxc/main.go:310
+#: lxc/main.go:317
 msgid ""
 "If this is your first time running LXD on this machine, you should also run: "
 "lxd init"
@@ -1104,7 +1108,7 @@ msgstr ""
 msgid "Ignore the container state"
 msgstr ""
 
-#: lxc/image.go:1292
+#: lxc/image.go:1296
 msgid "Image already up to date."
 msgstr ""
 
@@ -1116,7 +1120,7 @@ msgstr ""
 msgid "Image exported successfully!"
 msgstr ""
 
-#: lxc/image.go:288 lxc/image.go:1255
+#: lxc/image.go:288 lxc/image.go:1259
 msgid "Image identifier missing"
 msgstr ""
 
@@ -1125,12 +1129,12 @@ msgstr ""
 msgid "Image identifier missing: %s"
 msgstr ""
 
-#: lxc/image.go:762
+#: lxc/image.go:766
 #, c-format
 msgid "Image imported with fingerprint: %s"
 msgstr ""
 
-#: lxc/image.go:1290
+#: lxc/image.go:1294
 msgid "Image refreshed successfully!"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
 
-#: lxc/image.go:1216 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
+#: lxc/image.go:1220 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
 #, c-format
 msgid "Invalid format %q"
 msgstr ""
@@ -1206,7 +1210,7 @@ msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr ""
 
-#: lxc/main.go:398
+#: lxc/main.go:405
 msgid "Invalid number of arguments"
 msgstr ""
 
@@ -1254,12 +1258,12 @@ msgstr ""
 msgid "LXD server isn't part of a cluster"
 msgstr ""
 
-#: lxc/image.go:857
+#: lxc/image.go:861
 #, c-format
 msgid "Last used: %s"
 msgstr ""
 
-#: lxc/image.go:859
+#: lxc/image.go:863
 msgid "Last used: never"
 msgstr ""
 
@@ -1372,11 +1376,11 @@ msgid ""
 "Filters may be part of the image hash or part of the image alias name.\n"
 msgstr ""
 
-#: lxc/image.go:902
+#: lxc/image.go:906
 msgid "List images"
 msgstr ""
 
-#: lxc/image.go:903
+#: lxc/image.go:907
 msgid ""
 "List images\n"
 "\n"
@@ -1577,11 +1581,11 @@ msgstr ""
 msgid "Memory usage:"
 msgstr ""
 
-#: lxc/move.go:227
+#: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
 
-#: lxc/move.go:232
+#: lxc/move.go:235
 msgid "Migration operation failure"
 msgstr ""
 
@@ -1667,7 +1671,7 @@ msgstr ""
 msgid "More than one file to download, but target is not a directory"
 msgstr ""
 
-#: lxc/move.go:35 lxc/move.go:36
+#: lxc/move.go:36 lxc/move.go:37
 msgid "Move containers within or in between LXD instances"
 msgstr ""
 
@@ -1675,7 +1679,7 @@ msgstr ""
 msgid "Move storage volumes between pools"
 msgstr ""
 
-#: lxc/move.go:53
+#: lxc/move.go:54
 msgid "Move the container without its snapshots"
 msgstr ""
 
@@ -1744,7 +1748,7 @@ msgstr ""
 msgid "New aliases to add to the image"
 msgstr ""
 
-#: lxc/copy.go:44 lxc/move.go:50
+#: lxc/copy.go:45 lxc/move.go:51
 msgid "New key/value to apply to a specific device"
 msgstr ""
 
@@ -1781,7 +1785,7 @@ msgstr ""
 msgid "Only https URLs are supported for simplestreams"
 msgstr ""
 
-#: lxc/image.go:665
+#: lxc/image.go:669
 msgid "Only https:// is supported for remote image import"
 msgstr ""
 
@@ -1794,6 +1798,10 @@ msgstr ""
 msgid "Operation %s deleted"
 msgstr ""
 
+#: lxc/main.go:61
+msgid "Override the source project"
+msgstr ""
+
 #: lxc/exec.go:53
 msgid "Override the terminal mode (auto, interactive or non-interactive)"
 msgstr ""
@@ -1818,7 +1826,7 @@ msgstr ""
 msgid "PROTOCOL"
 msgstr ""
 
-#: lxc/image.go:939 lxc/remote.go:489
+#: lxc/image.go:943 lxc/remote.go:489
 msgid "PUBLIC"
 msgstr ""
 
@@ -1830,7 +1838,7 @@ msgstr ""
 msgid "Packets sent"
 msgstr ""
 
-#: lxc/main.go:279
+#: lxc/main.go:286
 #, c-format
 msgid "Password for %s: "
 msgstr ""
@@ -1839,7 +1847,7 @@ msgstr ""
 msgid "Pause containers"
 msgstr ""
 
-#: lxc/copy.go:53
+#: lxc/copy.go:55
 msgid "Perform an incremental copy"
 msgstr ""
 
@@ -1862,7 +1870,7 @@ msgstr ""
 msgid "Pretty rendering"
 msgstr ""
 
-#: lxc/main.go:58
+#: lxc/main.go:59
 msgid "Print help"
 msgstr ""
 
@@ -1870,7 +1878,7 @@ msgstr ""
 msgid "Print the raw response"
 msgstr ""
 
-#: lxc/main.go:57
+#: lxc/main.go:58
 msgid "Print version number"
 msgstr ""
 
@@ -1914,11 +1922,11 @@ msgstr ""
 msgid "Profile %s renamed to %s"
 msgstr ""
 
-#: lxc/copy.go:45 lxc/init.go:43
+#: lxc/copy.go:46 lxc/init.go:43
 msgid "Profile to apply to the new container"
 msgstr ""
 
-#: lxc/move.go:51
+#: lxc/move.go:52
 msgid "Profile to apply to the target container"
 msgstr ""
 
@@ -1947,7 +1955,7 @@ msgstr ""
 msgid "Project %s renamed to %s"
 msgstr ""
 
-#: lxc/image.go:862
+#: lxc/image.go:866
 msgid "Properties:"
 msgstr ""
 
@@ -1955,7 +1963,7 @@ msgstr ""
 msgid "Public image server"
 msgstr ""
 
-#: lxc/image.go:840
+#: lxc/image.go:844
 #, c-format
 msgid "Public: %s"
 msgstr ""
@@ -1986,16 +1994,16 @@ msgstr ""
 msgid "Recursively transfer files"
 msgstr ""
 
-#: lxc/image.go:1231 lxc/image.go:1232
+#: lxc/image.go:1235 lxc/image.go:1236
 msgid "Refresh images"
 msgstr ""
 
-#: lxc/copy.go:362
+#: lxc/copy.go:370
 #, c-format
 msgid "Refreshing container: %s"
 msgstr ""
 
-#: lxc/image.go:1260
+#: lxc/image.go:1264
 #, c-format
 msgid "Refreshing the image: %s"
 msgstr ""
@@ -2152,7 +2160,7 @@ msgstr ""
 msgid "Run command against all containers"
 msgstr ""
 
-#: lxc/image.go:942
+#: lxc/image.go:946
 msgid "SIZE"
 msgstr ""
 
@@ -2249,11 +2257,11 @@ msgstr ""
 msgid "Set the file's uid on push"
 msgstr ""
 
-#: lxc/main.go:60
+#: lxc/main.go:62
 msgid "Show all debug messages"
 msgstr ""
 
-#: lxc/main.go:61
+#: lxc/main.go:63
 msgid "Show all information messages"
 msgstr ""
 
@@ -2285,11 +2293,11 @@ msgstr ""
 msgid "Show full device configuration for containers or profiles"
 msgstr ""
 
-#: lxc/image.go:1308 lxc/image.go:1309
+#: lxc/image.go:1312 lxc/image.go:1313
 msgid "Show image properties"
 msgstr ""
 
-#: lxc/main.go:219 lxc/main.go:220
+#: lxc/main.go:221 lxc/main.go:222
 msgid "Show less common commands"
 msgstr ""
 
@@ -2345,7 +2353,7 @@ msgstr ""
 msgid "Show the used and free space in bytes"
 msgstr ""
 
-#: lxc/image.go:788 lxc/image.go:789
+#: lxc/image.go:792 lxc/image.go:793
 msgid "Show useful information about images"
 msgstr ""
 
@@ -2353,7 +2361,7 @@ msgstr ""
 msgid "Show useful information about storage pools"
 msgstr ""
 
-#: lxc/image.go:838
+#: lxc/image.go:842
 #, c-format
 msgid "Size: %.2fMB"
 msgstr ""
@@ -2371,7 +2379,7 @@ msgstr ""
 msgid "Some containers failed to %s"
 msgstr ""
 
-#: lxc/image.go:880
+#: lxc/image.go:884
 msgid "Source:"
 msgstr ""
 
@@ -2426,7 +2434,7 @@ msgstr ""
 msgid "Storage pool %s pending on member %s"
 msgstr ""
 
-#: lxc/copy.go:50 lxc/init.go:46 lxc/move.go:56
+#: lxc/copy.go:51 lxc/init.go:46 lxc/move.go:57
 msgid "Storage pool name"
 msgstr ""
 
@@ -2477,15 +2485,15 @@ msgstr ""
 msgid "TYPE"
 msgstr ""
 
-#: lxc/move.go:150
+#: lxc/move.go:152
 msgid "The --container-only flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:154
+#: lxc/move.go:156
 msgid "The --mode flag can't be used with --target"
 msgstr ""
 
-#: lxc/move.go:146
+#: lxc/move.go:148
 msgid "The --stateless flag can't be used with --target"
 msgstr ""
 
@@ -2526,7 +2534,7 @@ msgstr ""
 msgid "The profile device doesn't exist"
 msgstr ""
 
-#: lxc/move.go:219
+#: lxc/move.go:222
 msgid "The source LXD instance is not clustered"
 msgstr ""
 
@@ -2547,7 +2555,7 @@ msgstr ""
 msgid "Time to wait for the container before killing it"
 msgstr ""
 
-#: lxc/image.go:841
+#: lxc/image.go:845
 msgid "Timestamps:"
 msgstr ""
 
@@ -2563,11 +2571,11 @@ msgstr ""
 msgid "To detach from the console, press: <ctrl>+a q"
 msgstr ""
 
-#: lxc/main.go:313
+#: lxc/main.go:320
 msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
-#: lxc/copy.go:108
+#: lxc/copy.go:116
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
@@ -2575,20 +2583,20 @@ msgstr ""
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
 
-#: lxc/copy.go:47
+#: lxc/copy.go:48
 msgid "Transfer mode. One of pull (default), push or relay"
 msgstr ""
 
-#: lxc/move.go:54 lxc/storage_volume.go:306
+#: lxc/move.go:55 lxc/storage_volume.go:306
 msgid "Transfer mode. One of pull (default), push or relay."
 msgstr ""
 
-#: lxc/copy.go:331
+#: lxc/copy.go:339
 #, c-format
 msgid "Transferring container: %s"
 msgstr ""
 
-#: lxc/image.go:695
+#: lxc/image.go:699
 #, c-format
 msgid "Transferring image: %s"
 msgstr ""
@@ -2606,7 +2614,7 @@ msgstr ""
 msgid "Type: persistent"
 msgstr ""
 
-#: lxc/image.go:943
+#: lxc/image.go:947
 msgid "UPLOAD DATE"
 msgstr ""
 
@@ -2624,7 +2632,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:958 lxc/list.go:514
+#: lxc/image.go:962 lxc/list.go:514
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -2634,7 +2642,7 @@ msgstr ""
 msgid "Unknown file type '%s'"
 msgstr ""
 
-#: lxc/move.go:52
+#: lxc/move.go:53
 msgid "Unset all profiles on the target container"
 msgstr ""
 
@@ -2666,7 +2674,7 @@ msgstr ""
 msgid "Unset storage volume configuration keys"
 msgstr ""
 
-#: lxc/image.go:848
+#: lxc/image.go:852
 #, c-format
 msgid "Uploaded: %s"
 msgstr ""
@@ -2716,11 +2724,11 @@ msgstr ""
 msgid "You can't pass -t or -T at the same time as --mode"
 msgstr ""
 
-#: lxc/copy.go:80
+#: lxc/copy.go:82
 msgid "You must specify a destination container name when using --target"
 msgstr ""
 
-#: lxc/copy.go:75 lxc/move.go:203
+#: lxc/copy.go:77 lxc/move.go:206
 msgid "You must specify a source container name"
 msgstr ""
 
@@ -2796,7 +2804,7 @@ msgstr ""
 msgid "copy [<remote>:]<profile> [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/copy.go:36
+#: lxc/copy.go:37
 msgid "copy [<remote>:]<source>[/<snapshot>] [[<remote>:]<destination>]"
 msgstr ""
 
@@ -2910,7 +2918,7 @@ msgstr ""
 msgid "didn't get any affected image, container or snapshot from server"
 msgstr ""
 
-#: lxc/image.go:832
+#: lxc/image.go:836
 msgid "disabled"
 msgstr ""
 
@@ -2962,7 +2970,7 @@ msgstr ""
 msgid "enable [<remote>:] <name>"
 msgstr ""
 
-#: lxc/image.go:834
+#: lxc/image.go:838
 msgid "enabled"
 msgstr ""
 
@@ -3039,7 +3047,7 @@ msgstr ""
 msgid "info"
 msgstr ""
 
-#: lxc/image.go:787
+#: lxc/image.go:791
 msgid "info [<remote>:]<image>"
 msgstr ""
 
@@ -3072,7 +3080,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:900 lxc/list.go:45
+#: lxc/image.go:904 lxc/list.go:45
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3214,7 +3222,7 @@ msgid ""
 "    Only show lifecycle events."
 msgstr ""
 
-#: lxc/move.go:38
+#: lxc/move.go:39
 msgid ""
 "lxc move [<remote>:]<source container> [<remote>:][<destination container>] "
 "[--container-only]\n"
@@ -3318,7 +3326,7 @@ msgstr ""
 msgid "move [<pool>/]<volume> [<pool>/]<volume>"
 msgstr ""
 
-#: lxc/move.go:33
+#: lxc/move.go:34
 msgid ""
 "move [<remote>:]<container>[/<snapshot>] [<remote>:][<container>[/"
 "<snapshot>]]"
@@ -3332,7 +3340,7 @@ msgstr ""
 msgid "network"
 msgstr ""
 
-#: lxc/image.go:822 lxc/image.go:827 lxc/image.go:996
+#: lxc/image.go:826 lxc/image.go:831 lxc/image.go:1000
 msgid "no"
 msgstr ""
 
@@ -3386,7 +3394,7 @@ msgstr ""
 msgid "query [<remote>:]<API path>"
 msgstr ""
 
-#: lxc/image.go:1230
+#: lxc/image.go:1234
 msgid "refresh [<remote>:]<image> [[<remote>:]<image>...]"
 msgstr ""
 
@@ -3512,7 +3520,7 @@ msgstr ""
 msgid "show [<remote>:]<container|profile>"
 msgstr ""
 
-#: lxc/image.go:1307
+#: lxc/image.go:1311
 msgid "show [<remote>:]<image>"
 msgstr ""
 
@@ -3653,6 +3661,6 @@ msgstr ""
 msgid "y"
 msgstr ""
 
-#: lxc/delete.go:46 lxc/image.go:824 lxc/image.go:829 lxc/image.go:994
+#: lxc/delete.go:46 lxc/image.go:828 lxc/image.go:833 lxc/image.go:998
 msgid "yes"
 msgstr ""


More information about the lxc-devel mailing list