The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/7709
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) ===
From d4dac5d5a0314fb9c29db90548acb9479bff0f4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgra...@ubuntu.com> Date: Thu, 30 Jul 2020 14:25:08 -0400 Subject: [PATCH 1/2] lxc/move: Allow --target with cluster destination MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber <stgra...@ubuntu.com> --- lxc/move.go | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/lxc/move.go b/lxc/move.go index d7ef9bfc86..5a6a0fbba5 100644 --- a/lxc/move.go +++ b/lxc/move.go @@ -148,22 +148,33 @@ func (c *cmdMove) Run(cmd *cobra.Command, args []string) error { destResource = args[1] } - // If the target option was specified, we're moving an instance from a - // cluster member to another, let's use the dedicated API. if c.flagTarget != "" { - if c.flagStateless { - return fmt.Errorf(i18n.G("The --stateless flag can't be used with --target")) - } + // If the target option was specified, we're moving an instance from a + // cluster member to another, let's use the dedicated API. + if sourceRemote == destRemote { + if c.flagStateless { + return fmt.Errorf(i18n.G("The --stateless flag can't be used with --target")) + } - if c.flagInstanceOnly { - return fmt.Errorf(i18n.G("The --instance-only flag can't be used with --target")) + if c.flagInstanceOnly { + return fmt.Errorf(i18n.G("The --instance-only flag can't be used with --target")) + } + + if c.flagMode != moveDefaultMode { + return fmt.Errorf(i18n.G("The --mode flag can't be used with --target")) + } + + return moveClusterInstance(conf, sourceResource, destResource, c.flagTarget) } - if c.flagMode != moveDefaultMode { - return fmt.Errorf(i18n.G("The --mode flag can't be used with --target")) + dest, err := conf.GetInstanceServer(destRemote) + if err != nil { + return err } - return moveClusterInstance(conf, sourceResource, destResource, c.flagTarget) + if !dest.IsClustered() { + return fmt.Errorf(i18n.G("The destination LXD server is not clustered")) + } } cpy := cmdCopy{} From 60307841faaeeeadadea828b3790a8b25d77ca08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgra...@ubuntu.com> Date: Thu, 30 Jul 2020 14:25:23 -0400 Subject: [PATCH 2/2] 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 <stgra...@ubuntu.com> --- po/bg.po | 22 +++++++++++++--------- po/ca.po | 22 +++++++++++++--------- po/de.po | 22 +++++++++++++--------- po/el.po | 22 +++++++++++++--------- po/es.po | 22 +++++++++++++--------- po/fa.po | 22 +++++++++++++--------- po/fi.po | 22 +++++++++++++--------- po/fr.po | 22 +++++++++++++--------- po/hi.po | 22 +++++++++++++--------- po/id.po | 22 +++++++++++++--------- po/it.po | 22 +++++++++++++--------- po/ja.po | 23 ++++++++++++++--------- po/ko.po | 22 +++++++++++++--------- po/lxd.pot | 22 +++++++++++++--------- po/nb_NO.po | 22 +++++++++++++--------- po/nl.po | 22 +++++++++++++--------- po/pa.po | 22 +++++++++++++--------- po/pl.po | 22 +++++++++++++--------- po/pt_BR.po | 22 +++++++++++++--------- po/ru.po | 22 +++++++++++++--------- po/sl.po | 22 +++++++++++++--------- po/sr.po | 22 +++++++++++++--------- po/sv.po | 22 +++++++++++++--------- po/te.po | 22 +++++++++++++--------- po/tr.po | 22 +++++++++++++--------- po/ug.po | 22 +++++++++++++--------- po/uk.po | 22 +++++++++++++--------- po/zh_Hans.po | 22 +++++++++++++--------- 28 files changed, 365 insertions(+), 252 deletions(-) diff --git a/po/bg.po b/po/bg.po index 2856c6130c..6d09523579 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxc-devel@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/ca.po b/po/ca.po index 27eba7e847..96d833b6e9 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxc-devel@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/de.po b/po/de.po index 04ab8841b3..4ea402ae86 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2020-04-27 19:48+0000\n" "Last-Translator: Predatorix Phoenix <predato...@web.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/" @@ -1389,7 +1389,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "FINGERABDRUCK" -#: lxc/move.go:225 +#: lxc/move.go:236 #, fuzzy msgid "Failed to connect to cluster member" msgstr "kann nicht zum selben Container Namen kopieren" @@ -2207,11 +2207,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3377,18 +3377,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 #, fuzzy msgid "The device already exists" @@ -3429,7 +3433,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "entfernte Instanz %s existiert nicht" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3722,7 +3726,7 @@ msgstr "kann nicht zum selben Container Namen kopieren" msgid "You must specify a destination instance name when using --target" msgstr "der Name des Ursprung Containers muss angegeben werden" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 #, fuzzy msgid "You must specify a source instance name" msgstr "der Name des Ursprung Containers muss angegeben werden" diff --git a/po/el.po b/po/el.po index cf97b465c8..e3bdfcfe59 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2017-02-14 08:00+0000\n" "Last-Translator: Simos Xenitellis <simos...@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/linux-containers/" @@ -1191,7 +1191,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1955,11 +1955,11 @@ msgstr " Χρήση μνήμης:" msgid "Memory:" msgstr " Χρήση μνήμης:" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3067,18 +3067,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3116,7 +3120,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3389,7 +3393,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/es.po b/po/es.po index 1d26c3e877..c8e523e4f5 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2019-09-06 07:09+0000\n" "Last-Translator: Stéphane Graber <stgra...@stgraber.org>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/linux-containers/" @@ -1328,7 +1328,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "HUELLA DIGITAL" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -2095,11 +2095,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3215,18 +3215,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3264,7 +3268,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3537,7 +3541,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/fa.po b/po/fa.po index ef130db26b..5fbf69f3c8 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/fi.po b/po/fi.po index b9f2017d0d..0737ce671e 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/fr.po b/po/fr.po index cf3a2eb3b4..d10fd5f50b 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2019-01-04 18:07+0000\n" "Last-Translator: Deleted User <noreply+12...@weblate.org>\n" "Language-Team: French <https://hosted.weblate.org/projects/linux-containers/" @@ -1402,7 +1402,7 @@ msgstr "NOM" msgid "FINGERPRINT" msgstr "EMPREINTE" -#: lxc/move.go:225 +#: lxc/move.go:236 #, fuzzy msgid "Failed to connect to cluster member" msgstr "Profil à appliquer au nouveau conteneur" @@ -2264,12 +2264,12 @@ msgstr " Mémoire utilisée :" msgid "Memory:" msgstr " Mémoire utilisée :" -#: lxc/move.go:238 +#: lxc/move.go:249 #, fuzzy msgid "Migration API failure" msgstr "Échec lors de la migration vers l'hôte source: %s" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3458,18 +3458,22 @@ msgstr "" msgid "TYPE" msgstr "TYPE" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 #, fuzzy msgid "The device already exists" @@ -3516,7 +3520,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:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3809,7 +3813,7 @@ msgstr "impossible de copier vers le même nom de conteneur" msgid "You must specify a destination instance name when using --target" msgstr "vous devez spécifier un nom de conteneur source" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 #, fuzzy msgid "You must specify a source instance name" msgstr "vous devez spécifier un nom de conteneur source" diff --git a/po/hi.po b/po/hi.po index b872623b3b..bd430db88d 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/id.po b/po/id.po index 456fbf916c..f046230bd7 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/it.po b/po/it.po index 88643a1656..9370ecfa25 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2019-09-06 07:09+0000\n" "Last-Translator: Luigi Operoso <brokenp...@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/linux-containers/" @@ -1317,7 +1317,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -2089,11 +2089,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3211,18 +3211,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "La periferica esiste già" @@ -3261,7 +3265,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "il remote %s non esiste" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3536,7 +3540,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "Occorre specificare un nome di container come origine" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 #, fuzzy msgid "You must specify a source instance name" msgstr "Occorre specificare un nome di container come origine" diff --git a/po/ja.po b/po/ja.po index 8da171ad57..0af702aa68 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2020-07-03 17:01+0000\n" "Last-Translator: KATOH Yasufumi <ka...@jazz.email.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-" @@ -1356,7 +1356,7 @@ msgstr "FILENAME" msgid "FINGERPRINT" msgstr "FINGERPRINT" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "クラスタメンバへの接続に失敗しました" @@ -2250,11 +2250,11 @@ msgstr "メモリ消費量:" msgid "Memory:" msgstr "メモリ:" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "マイグレーション API が失敗しました" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "マイグレーションが失敗しました" @@ -3405,18 +3405,23 @@ msgstr "TARGET" msgid "TYPE" msgstr "TYPE" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "--instance-only と --target は同時に指定できません" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "--mode と --target は同時に指定できません" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "--stateless と --target は同時に指定できません" +#: lxc/move.go:176 +#, fuzzy +msgid "The destination LXD server is not clustered" +msgstr "移動元の LXD サーバはクラスタに属していません" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "デバイスはすでに存在します" @@ -3459,7 +3464,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "プロファイルのデバイスが存在しません" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "移動元の LXD サーバはクラスタに属していません" @@ -3757,7 +3762,7 @@ msgid "You must specify a destination instance name when using --target" msgstr "" "--target オプションを使うときはコピー先のインスタンス名を指定してください" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "コピー元のインスタンス名を指定してください" diff --git a/po/ko.po b/po/ko.po index 041d66e838..da1b28f130 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/lxd.pot b/po/lxd.pot index fd05f49914..dab08cd7bd 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@lists.linuxcontainers.org\n" - "POT-Creation-Date: 2020-07-30 10:11-0400\n" + "POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <l...@li.org>\n" @@ -1093,7 +1093,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1830,11 +1830,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -2893,18 +2893,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -2939,7 +2943,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3198,7 +3202,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 1728d0c1f8..07a12f02d7 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/nl.po b/po/nl.po index 6d921c9f3d..57450d1c17 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2019-09-06 07:09+0000\n" "Last-Translator: Stéphane Graber <stgra...@stgraber.org>\n" "Language-Team: Dutch <https://hosted.weblate.org/projects/linux-containers/" @@ -1301,7 +1301,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -2063,11 +2063,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3173,18 +3173,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3222,7 +3226,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3495,7 +3499,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/pa.po b/po/pa.po index 30a3e52511..70d882a1e2 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/pl.po b/po/pl.po index 7ba050a4bd..32a6581300 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2018-09-08 19:22+0000\n" "Last-Translator: m4sk1n <m...@m4sk.in>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/linux-containers/" @@ -1311,7 +1311,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -2073,11 +2073,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3183,18 +3183,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3232,7 +3236,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3505,7 +3509,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index e22b34127a..c5a3dc1417 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2019-09-06 07:09+0000\n" "Last-Translator: Stéphane Graber <stgra...@stgraber.org>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" @@ -1358,7 +1358,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -2130,11 +2130,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3257,18 +3257,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3306,7 +3310,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3583,7 +3587,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/ru.po b/po/ru.po index a41e34d62c..0e415f4110 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2018-06-22 15:57+0000\n" "Last-Translator: Александр Киль <shor...@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/linux-containers/" @@ -1342,7 +1342,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -2120,11 +2120,11 @@ msgstr " Использование памяти:" msgid "Memory:" msgstr " Использование памяти:" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3252,18 +3252,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3301,7 +3305,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3574,7 +3578,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/sl.po b/po/sl.po index f2a73ae6b1..4a40091a1b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxc-devel@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/sr.po b/po/sr.po index 30e472da7d..c01b5c5c1c 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/sv.po b/po/sv.po index a1e2872d11..f6904665bf 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/te.po b/po/te.po index afd076d4dd..411eb2fd48 100644 --- a/po/te.po +++ b/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxc-devel@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/tr.po b/po/tr.po index c2dcffc4e5..cff1edfac3 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/ug.po b/po/ug.po index 728b3a2e93..24fc2fae05 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxc-devel@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/uk.po b/po/uk.po index 590aaee941..483bbcff0a 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1184,7 +1184,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1946,11 +1946,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3056,18 +3056,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3105,7 +3109,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3378,7 +3382,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr "" diff --git a/po/zh_Hans.po b/po/zh_Hans.po index b4ccd3c4e8..f0a27d6566 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@lists.linuxcontainers.org\n" -"POT-Creation-Date: 2020-07-23 13:16-0400\n" +"POT-Creation-Date: 2020-07-30 14:25-0400\n" "PO-Revision-Date: 2018-09-11 19:15+0000\n" "Last-Translator: 0x0916 <w...@laoqinren.net>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" @@ -1187,7 +1187,7 @@ msgstr "" msgid "FINGERPRINT" msgstr "" -#: lxc/move.go:225 +#: lxc/move.go:236 msgid "Failed to connect to cluster member" msgstr "" @@ -1949,11 +1949,11 @@ msgstr "" msgid "Memory:" msgstr "" -#: lxc/move.go:238 +#: lxc/move.go:249 msgid "Migration API failure" msgstr "" -#: lxc/move.go:243 +#: lxc/move.go:254 msgid "Migration operation failure" msgstr "" @@ -3059,18 +3059,22 @@ msgstr "" msgid "TYPE" msgstr "" -#: lxc/move.go:159 +#: lxc/move.go:160 msgid "The --instance-only flag can't be used with --target" msgstr "" -#: lxc/move.go:163 +#: lxc/move.go:164 msgid "The --mode flag can't be used with --target" msgstr "" -#: lxc/move.go:155 +#: lxc/move.go:156 msgid "The --stateless flag can't be used with --target" msgstr "" +#: lxc/move.go:176 +msgid "The destination LXD server is not clustered" +msgstr "" + #: lxc/config_device.go:136 lxc/config_device.go:153 lxc/config_device.go:363 msgid "The device already exists" msgstr "" @@ -3108,7 +3112,7 @@ msgstr "" msgid "The profile device doesn't exist" msgstr "" -#: lxc/move.go:230 +#: lxc/move.go:241 msgid "The source LXD server is not clustered" msgstr "" @@ -3381,7 +3385,7 @@ msgstr "" msgid "You must specify a destination instance name when using --target" msgstr "" -#: lxc/copy.go:75 lxc/move.go:214 +#: lxc/copy.go:75 lxc/move.go:225 msgid "You must specify a source instance name" msgstr ""
_______________________________________________ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel