[lxc-devel] [lxd/master] Support encrypted PEM private keys
stgraber on Github
lxc-bot at linuxcontainers.org
Thu Oct 4 21:14:49 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/20181004/166999fa/attachment.bin>
-------------- next part --------------
From f0eccdd957c3964a768f83899825e5d4e37c5fcc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 4 Oct 2018 17:13:45 -0400
Subject: [PATCH 1/3] config: Add support for PEM encrypted keys
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 | 21 +++++++++++++++++++++
2 files changed, 24 insertions(+)
diff --git a/lxc/config/config.go b/lxc/config/config.go
index 7b51cf6ba0..96c88be9b3 100644
--- a/lxc/config/config.go
+++ b/lxc/config/config.go
@@ -27,6 +27,9 @@ type Config struct {
// The UserAgent to pass for all queries
UserAgent string `yaml:"-"`
+ // PromptPassword is a helper function used when encountering an encrypted key
+ PromptPassword func(filename string) (string, error)
+
authInteractor []httpbakery.Interactor
cookiejar *cookiejar.Jar
diff --git a/lxc/config/remote.go b/lxc/config/remote.go
index bc1acf63ec..ae9982792e 100644
--- a/lxc/config/remote.go
+++ b/lxc/config/remote.go
@@ -1,6 +1,8 @@
package config
import (
+ "crypto/x509"
+ "encoding/pem"
"fmt"
"io/ioutil"
"strings"
@@ -162,6 +164,25 @@ func (c *Config) getConnectionArgs(name string) (*lxd.ConnectionArgs, error) {
return nil, err
}
+ pemKey, _ := pem.Decode(content)
+ if x509.IsEncryptedPEMBlock(pemKey) {
+ if c.PromptPassword == nil {
+ return nil, fmt.Errorf("Private key is password protected and no helper was configured")
+ }
+
+ password, err := c.PromptPassword("client.crt")
+ if err != nil {
+ return nil, err
+ }
+
+ derKey, err := x509.DecryptPEMBlock(pemKey, []byte(password))
+ if err != nil {
+ return nil, err
+ }
+
+ content = pem.EncodeToMemory(&pem.Block{Type: "RSA PRIVATE KEY", Bytes: derKey})
+ }
+
args.TLSClientKey = string(content)
}
From ac8039c8b64d9d0eff363aebb2e5c5ce9198bfba Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 4 Oct 2018 17:14:00 -0400
Subject: [PATCH 2/3] lxc: Setup password helper
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 | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/lxc/main.go b/lxc/main.go
index 1ec8c08a9f..5facccf485 100644
--- a/lxc/main.go
+++ b/lxc/main.go
@@ -270,6 +270,11 @@ func (c *cmdGlobal) PreRun(cmd *cobra.Command, args []string) error {
c.conf = config.NewConfig(filepath.Dir(c.confPath), true)
}
+ // Setup password helper
+ c.conf.PromptPassword = func(filename string) (string, error) {
+ return cli.AskPasswordOnce(fmt.Sprintf(i18n.G("Password for %s: "), filename)), nil
+ }
+
// If the user is running a command that may attempt to connect to the local daemon
// and this is the first time the client has been run by the user, then check to see
// if LXD has been properly configured. Don't display the message if the var path
From 4941aff34b3fbd172d32af3b081256c99109d27a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 4 Oct 2018 17:14:12 -0400
Subject: [PATCH 3/3] 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 | 89 +++++++++++++++++++++++++++------------------------
po/el.po | 89 +++++++++++++++++++++++++++------------------------
po/es.po | 89 +++++++++++++++++++++++++++------------------------
po/fa.po | 89 +++++++++++++++++++++++++++------------------------
po/fi.po | 89 +++++++++++++++++++++++++++------------------------
po/fr.po | 89 +++++++++++++++++++++++++++------------------------
po/hi.po | 89 +++++++++++++++++++++++++++------------------------
po/id.po | 89 +++++++++++++++++++++++++++------------------------
po/it.po | 89 +++++++++++++++++++++++++++------------------------
po/ja.po | 89 +++++++++++++++++++++++++++------------------------
po/ko.po | 89 +++++++++++++++++++++++++++------------------------
po/lxd.pot | 87 +++++++++++++++++++++++++------------------------
po/nb_NO.po | 89 +++++++++++++++++++++++++++------------------------
po/nl.po | 89 +++++++++++++++++++++++++++------------------------
po/pa.po | 89 +++++++++++++++++++++++++++------------------------
po/pl.po | 89 +++++++++++++++++++++++++++------------------------
po/pt_BR.po | 89 +++++++++++++++++++++++++++------------------------
po/ru.po | 89 +++++++++++++++++++++++++++------------------------
po/sr.po | 89 +++++++++++++++++++++++++++------------------------
po/sv.po | 89 +++++++++++++++++++++++++++------------------------
po/tr.po | 89 +++++++++++++++++++++++++++------------------------
po/uk.po | 89 +++++++++++++++++++++++++++------------------------
po/zh.po | 89 +++++++++++++++++++++++++++------------------------
po/zh_Hans.po | 89 +++++++++++++++++++++++++++------------------------
24 files changed, 1127 insertions(+), 1007 deletions(-)
diff --git a/po/de.po b/po/de.po
index e507e14e7e..94df0b5333 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2018-09-02 14:16+0000\n"
"Last-Translator: ssantos <ssantos at web.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -293,7 +293,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr "ARCHITEKTUR"
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -327,7 +327,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr "kann nicht zum selben Container Namen kopieren"
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr "Administrator Passwort für %s: "
@@ -393,7 +393,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -498,7 +498,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -527,12 +527,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, fuzzy, c-format
msgid "Certificate fingerprint: %s"
msgstr "Fingerabdruck des Zertifikats: % x\n"
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr "Gespeichertes Nutzerzertifikat auf dem Server: "
@@ -666,7 +666,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr "Anhalten des Containers fehlgeschlagen!"
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr "Kann Verzeichnis für Zertifikate auf dem Server nicht erstellen"
@@ -836,8 +836,8 @@ msgstr "Kein Zertifikat für diese Verbindung"
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1131,7 +1131,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1196,7 +1196,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1290,7 +1290,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, fuzzy, c-format
msgid "Invalid format %q"
msgstr "Ungültiges Ziel %s"
@@ -1311,7 +1311,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
#, fuzzy
msgid "Invalid number of arguments"
msgstr "ungültiges Argument %s"
@@ -1535,7 +1535,7 @@ msgstr ""
msgid "List storage volumes"
msgstr "Kein Zertifikat für diese Verbindung"
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1826,11 +1826,11 @@ msgid "Must supply container name for: "
msgstr "der Name des Ursprung Containers muss angegeben werden"
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1949,11 +1949,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1965,6 +1965,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, fuzzy, c-format
+msgid "Password for %s: "
+msgstr "Administrator Passwort für %s: "
+
#: lxc/action.go:49 lxc/action.go:50
#, fuzzy
msgid "Pause containers"
@@ -2113,12 +2118,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, fuzzy, c-format
msgid "Remote %s already exists"
msgstr "entfernte Instanz %s existiert bereits"
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, fuzzy, c-format
msgid "Remote %s doesn't exist"
msgstr "entfernte Instanz %s existiert nicht"
@@ -2128,7 +2133,7 @@ msgstr "entfernte Instanz %s existiert nicht"
msgid "Remote %s exists as <%s>"
msgstr "entfernte Instanz %s existiert als <%s>"
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -2171,7 +2176,7 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
msgid "Remove profiles from containers"
msgstr "kann nicht zum selben Container Namen kopieren"
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -2202,7 +2207,7 @@ msgstr ""
msgid "Rename profiles"
msgstr "Fehlerhafte Profil URL %s"
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2288,7 +2293,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2308,11 +2313,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr "Server Zertifikat vom Benutzer nicht akzeptiert"
-#: lxc/remote.go:384
+#: lxc/remote.go:383
#, fuzzy
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2354,7 +2359,7 @@ msgstr "Profil %s erstellt\n"
msgid "Set storage volume configuration keys"
msgstr "Profil %s erstellt\n"
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2446,7 +2451,7 @@ msgstr "Profil %s erstellt\n"
msgid "Show the container's last 100 log lines?"
msgstr "Zeige die letzten 100 Zeilen Protokoll des Containers?"
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2588,7 +2593,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2694,7 +2699,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2741,7 +2746,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2835,7 +2840,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr "Zustand des laufenden Containers sichern oder nicht"
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2964,7 +2969,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -3169,7 +3174,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -3215,7 +3220,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3491,7 +3496,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
#, fuzzy
msgid "ok (y/n)?"
msgstr "OK (y/n)? "
@@ -3569,7 +3574,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3593,7 +3598,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3678,7 +3683,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3776,7 +3781,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3837,7 +3842,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/el.po b/po/el.po
index 1670c17bbc..484dde8115 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2017-02-14 08:00+0000\n"
"Last-Translator: Simos Xenitellis <simos.65 at gmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/linux-containers/"
@@ -186,7 +186,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -218,7 +218,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -282,7 +282,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -381,7 +381,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -410,12 +410,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -543,7 +543,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -702,8 +702,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -983,7 +983,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1138,7 +1138,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1159,7 +1159,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1362,7 +1362,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1634,11 +1634,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1754,11 +1754,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1770,6 +1770,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1911,12 +1916,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1926,7 +1931,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1965,7 +1970,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1994,7 +1999,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2074,7 +2079,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2094,11 +2099,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2135,7 +2140,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2223,7 +2228,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2358,7 +2363,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2457,7 +2462,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2504,7 +2509,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2593,7 +2598,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2713,7 +2718,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2886,7 +2891,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2932,7 +2937,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3199,7 +3204,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3257,7 +3262,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3281,7 +3286,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3347,7 +3352,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3427,7 +3432,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3488,7 +3493,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/es.po b/po/es.po
index f0d006a4be..01f8b3e911 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\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/"
@@ -243,7 +243,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr "ARQUITECTURA"
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -276,7 +276,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr "Contraseña admin para %s:"
@@ -340,7 +340,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr "Tipo de autenticación %s no está soportada por el servidor"
@@ -438,7 +438,7 @@ msgstr "No se puede jalar un directorio sin - recursivo"
msgid "Can't read from stdin: %s"
msgstr "No se peude leer desde stdin: %s"
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -468,12 +468,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr "Certificado de la huella digital: %s"
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr "Certificado del cliente almacenado en el servidor:"
@@ -601,7 +601,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -761,8 +761,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1043,7 +1043,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1107,7 +1107,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1199,7 +1199,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1220,7 +1220,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1424,7 +1424,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1697,11 +1697,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1816,11 +1816,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1832,6 +1832,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, fuzzy, c-format
+msgid "Password for %s: "
+msgstr "Contraseña admin para %s:"
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1973,12 +1978,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1988,7 +1993,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -2027,7 +2032,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -2056,7 +2061,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2136,7 +2141,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2156,11 +2161,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2197,7 +2202,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2285,7 +2290,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2420,7 +2425,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2519,7 +2524,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2566,7 +2571,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2655,7 +2660,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2776,7 +2781,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2949,7 +2954,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2995,7 +3000,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3262,7 +3267,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3320,7 +3325,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3344,7 +3349,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3410,7 +3415,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3490,7 +3495,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3552,7 +3557,7 @@ msgstr ""
msgid "volume"
msgstr "Columnas"
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index df62f4eb91..3e4f72d293 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 20ac5ddaf9..3e99e90cad 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index bb9019f597..4d91cf780e 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2018-03-06 13:50+0000\n"
"Last-Translator: Alban Vidal <alban.vidal at zordhak.fr>\n"
"Language-Team: French <https://hosted.weblate.org/projects/linux-containers/"
@@ -283,7 +283,7 @@ msgstr "ARCH"
msgid "ARCHITECTURE"
msgstr "ARCHITECTURE"
-#: lxc/remote.go:489
+#: lxc/remote.go:488
#, fuzzy
msgid "AUTH TYPE"
msgstr "TYPE"
@@ -318,7 +318,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr "Création du conteneur"
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr "Mot de passe administrateur pour %s : "
@@ -383,7 +383,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr "Le type d'authentification '%s' n'est pas supporté par le serveur"
@@ -484,7 +484,7 @@ msgstr "impossible de récupérer un répertoire sans --recursive"
msgid "Can't read from stdin: %s"
msgstr "Impossible de lire depuis stdin : %s"
-#: lxc/remote.go:635
+#: lxc/remote.go:634
#, fuzzy
msgid "Can't remove the default remote"
msgstr "impossible de supprimer le serveur distant par défaut"
@@ -516,12 +516,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr "Empreinte du certificat : %s"
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr "Certificat client enregistré sur le serveur : "
@@ -659,7 +659,7 @@ msgstr "Copie de l'image : %s"
msgid "Copying the storage volume: %s"
msgstr "Copie de l'image : %s"
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr "Impossible de créer le dossier de stockage des certificats serveurs"
@@ -845,8 +845,8 @@ msgstr "Copie de l'image : %s"
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1145,7 +1145,7 @@ msgstr "Forcer la suppression des conteneurs arrêtés"
msgid "Force using the local unix socket"
msgstr "Forcer l'utilisation de la socket unix locale"
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1214,7 +1214,7 @@ msgstr "IPv6"
msgid "ISSUE DATE"
msgstr "DATE D'ÉMISSION"
-#: lxc/main.go:301
+#: lxc/main.go:306
#, fuzzy
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
@@ -1313,7 +1313,7 @@ msgstr "Clé de configuration invalide"
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, fuzzy, c-format
msgid "Invalid format %q"
msgstr "Cible invalide %s"
@@ -1334,7 +1334,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
#, fuzzy
msgid "Invalid number of arguments"
msgstr "nombre d'arguments incorrect pour la sous-comande"
@@ -1603,7 +1603,7 @@ msgstr ""
msgid "List storage volumes"
msgstr "Copie de l'image : %s"
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1895,11 +1895,11 @@ msgid "Must supply container name for: "
msgstr "Vous devez fournir le nom d'un conteneur pour : "
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr "NOM"
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr "NON"
@@ -2024,11 +2024,11 @@ msgstr ""
msgid "PROFILES"
msgstr "PROFILS"
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr "PROTOCOLE"
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr "PUBLIC"
@@ -2040,6 +2040,11 @@ msgstr "Paquets reçus"
msgid "Packets sent"
msgstr "Paquets émis"
+#: lxc/main.go:275
+#, fuzzy, c-format
+msgid "Password for %s: "
+msgstr "Mot de passe administrateur pour %s : "
+
#: lxc/action.go:49 lxc/action.go:50
#, fuzzy
msgid "Pause containers"
@@ -2188,12 +2193,12 @@ msgstr "Récupération de l'image : %s"
msgid "Refreshing the image: %s"
msgstr "Récupération de l'image : %s"
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, fuzzy, c-format
msgid "Remote %s already exists"
msgstr "le serveur distant %s existe déjà"
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, fuzzy, c-format
msgid "Remote %s doesn't exist"
msgstr "le serveur distant %s n'existe pas"
@@ -2203,7 +2208,7 @@ msgstr "le serveur distant %s n'existe pas"
msgid "Remote %s exists as <%s>"
msgstr "le serveur distant %s existe en tant que <%s>"
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, fuzzy, c-format
msgid "Remote %s is static and cannot be modified"
msgstr "le serveur distant %s est statique et ne peut être modifié"
@@ -2246,7 +2251,7 @@ msgstr "L'arrêt du conteneur a échoué !"
msgid "Remove profiles from containers"
msgstr "Création du conteneur"
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -2276,7 +2281,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2363,7 +2368,7 @@ msgstr "SOURCE"
msgid "STATE"
msgstr "ÉTAT"
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr "STATIQUE"
@@ -2384,11 +2389,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr "Certificat serveur rejeté par l'utilisateur"
-#: lxc/remote.go:384
+#: lxc/remote.go:383
#, fuzzy
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2433,7 +2438,7 @@ msgstr "Clé de configuration invalide"
msgid "Set storage volume configuration keys"
msgstr "Clé de configuration invalide"
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2531,7 +2536,7 @@ msgstr "Afficher la configuration étendue"
msgid "Show the container's last 100 log lines?"
msgstr "Afficher les 100 dernières lignes du journal du conteneur ?"
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
#, fuzzy
msgid "Show the default remote"
msgstr "impossible de supprimer le serveur distant par défaut"
@@ -2673,7 +2678,7 @@ msgstr "Swap (courant)"
msgid "Swap (peak)"
msgstr "Swap (pointe)"
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
#, fuzzy
msgid "Switch the default remote"
msgstr "impossible de supprimer le serveur distant par défaut"
@@ -2781,7 +2786,7 @@ 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:304
+#: lxc/main.go:309
#, fuzzy
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2830,7 +2835,7 @@ msgstr "Type : persistant"
msgid "UPLOAD DATE"
msgstr "DATE DE PUBLICATION"
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr "URL"
@@ -2930,7 +2935,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr "Réaliser ou pas l'instantané de l'état de fonctionnement du conteneur"
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr "OUI"
@@ -3062,7 +3067,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr "par défaut"
@@ -3279,7 +3284,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
#, fuzzy
msgid "get-default"
msgstr "par défaut"
@@ -3326,7 +3331,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3624,7 +3629,7 @@ msgstr "Nom du réseau"
msgid "no"
msgstr "non"
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr "ok (y/n) ?"
@@ -3710,7 +3715,7 @@ msgstr "Serveur distant : %s"
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3734,7 +3739,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3828,7 +3833,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3932,7 +3937,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
#, fuzzy
msgid "switch <remote>"
msgstr "impossible de supprimer le serveur distant par défaut"
@@ -3995,7 +4000,7 @@ msgstr ""
msgid "volume"
msgstr "Colonnes"
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 62003e944b..22fa0a3d37 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/id.po b/po/id.po
index b4408bee34..192d06abb9 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 190629e3be..92ff1acab3 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2017-08-18 14:22+0000\n"
"Last-Translator: Alberto Donato <alberto.donato at gmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/linux-containers/"
@@ -208,7 +208,7 @@ msgstr "ARCH"
msgid "ARCHITECTURE"
msgstr "ARCHITETTURA"
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -241,7 +241,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr "Password amministratore per %s: "
@@ -305,7 +305,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -404,7 +404,7 @@ msgstr "Impossibile effettuare il pull di una directory senza --recursive"
msgid "Can't read from stdin: %s"
msgstr "Impossible leggere da stdin: %s"
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -433,12 +433,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr "Certificato del client salvato dal server: "
@@ -566,7 +566,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -727,8 +727,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1010,7 +1010,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1074,7 +1074,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1167,7 +1167,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, fuzzy, c-format
msgid "Invalid format %q"
msgstr "Proprietà errata: %s"
@@ -1188,7 +1188,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
#, fuzzy
msgid "Invalid number of arguments"
msgstr "numero errato di argomenti del sottocomando"
@@ -1394,7 +1394,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1668,11 +1668,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1787,11 +1787,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1803,6 +1803,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, fuzzy, c-format
+msgid "Password for %s: "
+msgstr "Password amministratore per %s: "
+
#: lxc/action.go:49 lxc/action.go:50
#, fuzzy
msgid "Pause containers"
@@ -1945,12 +1950,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, fuzzy, c-format
msgid "Remote %s already exists"
msgstr "il remote %s esiste già"
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, fuzzy, c-format
msgid "Remote %s doesn't exist"
msgstr "il remote %s non esiste"
@@ -1960,7 +1965,7 @@ msgstr "il remote %s non esiste"
msgid "Remote %s exists as <%s>"
msgstr "il remote %s esiste come %s"
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, fuzzy, c-format
msgid "Remote %s is static and cannot be modified"
msgstr "il remote %s è statico e non può essere modificato"
@@ -1999,7 +2004,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -2028,7 +2033,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2109,7 +2114,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2129,11 +2134,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2170,7 +2175,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2258,7 +2263,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2395,7 +2400,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2495,7 +2500,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2542,7 +2547,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2632,7 +2637,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2754,7 +2759,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2927,7 +2932,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2973,7 +2978,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3240,7 +3245,7 @@ msgstr ""
msgid "no"
msgstr "no"
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr "ok (y/n)?"
@@ -3298,7 +3303,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3322,7 +3327,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3388,7 +3393,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3468,7 +3473,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3530,7 +3535,7 @@ msgstr ""
msgid "volume"
msgstr "Colonne"
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 2312068e61..aef207bb5e 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2018-09-06 08:20+0000\n"
"Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -187,7 +187,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -219,7 +219,7 @@ msgstr "新たに信頼済みのクライアントを追加します"
msgid "Add profiles to containers"
msgstr "コンテナにプロファイルを追加します"
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr "%s の管理者パスワード: "
@@ -287,7 +287,7 @@ msgstr ""
"このコマンドはコンテナのブートコンソールに接続できます。\n"
"そしてそこから過去のログエントリを取り出すことができます。"
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr "認証タイプ '%s' はサーバではサポートされていません"
@@ -386,7 +386,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr "標準入力から読み込めません: %s"
-#: lxc/remote.go:635
+#: lxc/remote.go:634
#, fuzzy
msgid "Can't remove the default remote"
msgstr "デフォルトのリモートは削除できません"
@@ -417,12 +417,12 @@ msgstr "キー '%s' が設定されていないので削除できません"
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr "証明書のフィンガープリント: %s"
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr "クライアント証明書がサーバに格納されました: "
@@ -559,7 +559,7 @@ msgstr "イメージのコピー中: %s"
msgid "Copying the storage volume: %s"
msgstr "ストレージボリュームのコピー中: %s"
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr "サーバ証明書格納用のディレクトリを作成できません"
@@ -722,8 +722,8 @@ msgstr "ストレージボリュームを削除します"
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1017,7 +1017,7 @@ msgstr "稼働中のコンテナを強制的に削除します"
msgid "Force using the local unix socket"
msgstr "強制的にローカルのUNIXソケットを使います"
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr "フォーマット (csv|json|table|yaml)"
@@ -1081,7 +1081,7 @@ msgstr "IPV6"
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1177,7 +1177,7 @@ msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
"不正な設定項目のカラムフォーマットです (フィールド数が多すぎます): '%s'"
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr "不正なフォーマット %q"
@@ -1201,7 +1201,7 @@ msgid ""
msgstr ""
"'%s' は不正な名前です。空文字列は maxWidth を指定しているときのみ指定できます"
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr "引数の数が不正です"
@@ -1485,7 +1485,7 @@ msgstr "プロファイルを一覧表示します"
msgid "List storage volumes"
msgstr "ストレージボリュームを一覧表示します"
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr "利用可能なリモートサーバを一覧表示します"
@@ -1778,11 +1778,11 @@ msgid "Must supply container name for: "
msgstr "コンテナ名を指定する必要があります: "
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1898,11 +1898,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1914,6 +1914,11 @@ msgstr "受信パケット"
msgid "Packets sent"
msgstr "送信パケット"
+#: lxc/main.go:275
+#, fuzzy, c-format
+msgid "Password for %s: "
+msgstr "%s の管理者パスワード: "
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr "コンテナを一時停止します"
@@ -2055,12 +2060,12 @@ msgstr "イメージを更新します"
msgid "Refreshing the image: %s"
msgstr "イメージの更新中: %s"
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr "リモート %s は既に存在します"
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr "リモート %s は存在しません"
@@ -2070,7 +2075,7 @@ msgstr "リモート %s は存在しません"
msgid "Remote %s exists as <%s>"
msgstr "リモート %s は <%s> として存在します"
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr "リモート %s は static ですので変更できません"
@@ -2109,7 +2114,7 @@ msgstr "コンテナのデバイスを削除します"
msgid "Remove profiles from containers"
msgstr "コンテナからプロファイルを削除します"
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr "リモートサーバを削除します"
@@ -2138,7 +2143,7 @@ msgstr "ネットワーク名を変更します"
msgid "Rename profiles"
msgstr "プロファイル名を変更します"
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr "リモートサーバ名を変更します"
@@ -2226,7 +2231,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2246,11 +2251,11 @@ msgstr "直接リクエスト (raw query) を LXD に送ります"
msgid "Server authentication type (tls or candid)"
msgstr "サーバの認証タイプ (tls もしくは candid)"
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr "ユーザによりサーバ証明書が拒否されました"
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr "認証後、サーバが我々を信用していません"
@@ -2287,7 +2292,7 @@ msgstr "ストレージプールの設定項目を設定します"
msgid "Set storage volume configuration keys"
msgstr "ストレージボリュームの設定項目を設定します"
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr "リモートの URL を設定します"
@@ -2375,7 +2380,7 @@ msgstr "ストレージボリュームの設定を表示する"
msgid "Show the container's last 100 log lines?"
msgstr "コンテナログの最後の 100 行を表示しますか?"
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr "デフォルトのリモートを表示します"
@@ -2511,7 +2516,7 @@ msgstr "Swap (現在値)"
msgid "Swap (peak)"
msgstr "Swap (ピーク)"
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr "デフォルトのリモートを切り替えます"
@@ -2619,7 +2624,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr "コンソールから切り離すには <ctrl>+a q を押します"
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
"初めてコンテナを起動するには、\"lxc launch ubuntu:18.04\" と実行してみてくだ"
@@ -2668,7 +2673,7 @@ msgstr "タイプ: persistent"
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2760,7 +2765,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr "コンテナの稼動状態のスナップショットを取得するかどうか"
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2881,7 +2886,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -3064,7 +3069,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -3110,7 +3115,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3479,7 +3484,7 @@ msgstr "network"
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr "ok (y/n)?"
@@ -3543,7 +3548,7 @@ msgstr "remote"
msgid "remove <alias>"
msgstr "remove <alias>"
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3567,7 +3572,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3635,7 +3640,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3717,7 +3722,7 @@ msgstr "stop [<remote>:]<container> [[<remote>:]<container>...]"
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr "switch <remote>"
@@ -3778,7 +3783,7 @@ msgstr ""
msgid "volume"
msgstr "volume"
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index 10589e9e5b..0e5c5b6e2f 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/lxd.pot b/po/lxd.pot
index a01a99a4e5..8f2baf07e0 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-09-25 11:38-0400\n"
+ "POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -208,7 +208,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -271,7 +271,7 @@ msgid "Attach to container consoles\n"
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -367,7 +367,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -396,12 +396,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -517,7 +517,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -642,7 +642,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:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30 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:788 lxc/image.go:902 lxc/image.go:1231 lxc/image.go:1308 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/publish.go:34 lxc/query.go:30 lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440 lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695 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:463 lxc/storage_volume.go:540 lxc/storage_volume.go:617 lxc/storage_volume.go:699 lxc/storage_volume.go:780 lxc/storage_volume.go:980 lxc/storage_volume.go:1069 lxc/storage_volume.go:1148 lxc/storage_volume.go:1179 lxc/storage_volume.go:1282 lxc/storage_volume.go:1359 lxc/storage_volume.go:1458 lxc/storage_volume.go:1489 lxc/storage_volume.go:1560 lxc/version.go:22
+#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:23 lxc/alias.go:55 lxc/alias.go:99 lxc/alias.go:147 lxc/alias.go:198 lxc/cluster.go: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:37 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:30 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:788 lxc/image.go:902 lxc/image.go:1231 lxc/image.go:1308 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/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:463 lxc/storage_volume.go:540 lxc/storage_volume.go:617 lxc/storage_volume.go:699 lxc/storage_volume.go:780 lxc/storage_volume.go:980 lxc/storage_volume.go:1069 lxc/storage_volume.go:1148 lxc/storage_volume.go:1179 lxc/storage_volume.go:1282 lxc/storage_volume.go:1359 lxc/storage_volume.go:1458 lxc/storage_volume.go:1489 lxc/storage_volume.go:1560 lxc/version.go:22
msgid "Description"
msgstr ""
@@ -901,7 +901,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -965,7 +965,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid "If this is your first time running LXD on this machine, you should also run: lxd init"
msgstr ""
@@ -1053,7 +1053,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1073,7 +1073,7 @@ msgstr ""
msgid "Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1270,7 +1270,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1518,11 +1518,11 @@ msgstr ""
msgid "Must supply container name for: "
msgstr ""
-#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622 lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622 lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1637,11 +1637,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1653,6 +1653,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1792,12 +1797,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1807,7 +1812,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1846,7 +1851,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1874,7 +1879,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -1952,7 +1957,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -1972,11 +1977,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2013,7 +2018,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2101,7 +2106,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2236,7 +2241,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2330,7 +2335,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2377,7 +2382,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2461,7 +2466,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2577,7 +2582,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2746,7 +2751,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2790,7 +2795,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3022,7 +3027,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3074,7 +3079,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3098,7 +3103,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3162,7 +3167,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3242,7 +3247,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3303,7 +3308,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/nb_NO.po b/po/nb_NO.po
index e7d6e343f6..e7e77829cf 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 6be5c3e832..32b413f78d 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/pa.po b/po/pa.po
index daaaa7f999..b810f7e5a6 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index d865032262..12ef3c96df 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2018-09-08 19:22+0000\n"
"Last-Translator: m4sk1n <me at m4sk.in>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/linux-containers/"
@@ -214,7 +214,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -246,7 +246,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -310,7 +310,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -408,7 +408,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -437,12 +437,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -570,7 +570,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -729,8 +729,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1009,7 +1009,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1073,7 +1073,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1164,7 +1164,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1185,7 +1185,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1388,7 +1388,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1659,11 +1659,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1778,11 +1778,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1794,6 +1794,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1935,12 +1940,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1950,7 +1955,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1989,7 +1994,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -2018,7 +2023,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2098,7 +2103,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2118,11 +2123,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2159,7 +2164,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2247,7 +2252,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2382,7 +2387,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2481,7 +2486,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2528,7 +2533,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2617,7 +2622,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2737,7 +2742,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2910,7 +2915,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2956,7 +2961,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3223,7 +3228,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3281,7 +3286,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3305,7 +3310,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3371,7 +3376,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3451,7 +3456,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3512,7 +3517,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index c5b29310ea..3f3c375ae9 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2018-08-06 22:13+0000\n"
"Last-Translator: Renato dos Santos <shazaum at gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -211,7 +211,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -243,7 +243,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -307,7 +307,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -405,7 +405,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -434,12 +434,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -567,7 +567,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -726,8 +726,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1006,7 +1006,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1070,7 +1070,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1161,7 +1161,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1182,7 +1182,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1385,7 +1385,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1656,11 +1656,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1775,11 +1775,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1791,6 +1791,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1932,12 +1937,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1947,7 +1952,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1986,7 +1991,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -2015,7 +2020,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2095,7 +2100,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2115,11 +2120,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2156,7 +2161,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2244,7 +2249,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2379,7 +2384,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2478,7 +2483,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2525,7 +2530,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2614,7 +2619,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2734,7 +2739,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2907,7 +2912,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2953,7 +2958,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3220,7 +3225,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3278,7 +3283,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3302,7 +3307,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3368,7 +3373,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3448,7 +3453,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3509,7 +3514,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 205a9f9ffc..3d346bdfe4 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2018-06-22 15:57+0000\n"
"Last-Translator: Александр Киль <shorrey at gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/linux-containers/"
@@ -276,7 +276,7 @@ msgstr "ARCH"
msgid "ARCHITECTURE"
msgstr "АРХИТЕКТУРА"
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr "Пароль администратора для %s: "
@@ -373,7 +373,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -473,7 +473,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr "Невозможно прочитать из стандартного ввода: %s"
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -502,12 +502,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr "Сертификат клиента хранится на сервере: "
@@ -636,7 +636,7 @@ msgstr "Копирование образа: %s"
msgid "Copying the storage volume: %s"
msgstr "Копирование образа: %s"
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr "Не удалось создать каталог сертификата сервера"
@@ -803,8 +803,8 @@ msgstr "Копирование образа: %s"
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -1088,7 +1088,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1152,7 +1152,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1246,7 +1246,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1267,7 +1267,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1473,7 +1473,7 @@ msgstr ""
msgid "List storage volumes"
msgstr "Копирование образа: %s"
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1751,11 +1751,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1872,11 +1872,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1888,6 +1888,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, fuzzy, c-format
+msgid "Password for %s: "
+msgstr "Пароль администратора для %s: "
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -2030,12 +2035,12 @@ msgstr "Копирование образа: %s"
msgid "Refreshing the image: %s"
msgstr "Копирование образа: %s"
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -2045,7 +2050,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -2085,7 +2090,7 @@ msgstr "Невозможно добавить имя контейнера в с
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -2115,7 +2120,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2198,7 +2203,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2218,11 +2223,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2259,7 +2264,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2349,7 +2354,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2487,7 +2492,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2633,7 +2638,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2722,7 +2727,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2847,7 +2852,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -3048,7 +3053,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -3094,7 +3099,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3365,7 +3370,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3439,7 +3444,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3463,7 +3468,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3545,7 +3550,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3641,7 +3646,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3703,7 +3708,7 @@ msgstr ""
msgid "volume"
msgstr "Столбцы"
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index af30982304..293f0f6d3d 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 67d66243e6..b456ae0a39 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index ce10c98e82..d2e938141d 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index c67c4983d0..47b95c2612 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/zh.po b/po/zh.po
index 379e447adb..6f922ef487 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: 2018-09-11 19:15+0000\n"
"Last-Translator: 0x0916 <w at laoqinren.net>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
@@ -186,7 +186,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -218,7 +218,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -282,7 +282,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -380,7 +380,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -409,12 +409,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -542,7 +542,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -701,8 +701,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -981,7 +981,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1045,7 +1045,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1136,7 +1136,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1157,7 +1157,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1360,7 +1360,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1631,11 +1631,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1750,11 +1750,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1766,6 +1766,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1907,12 +1912,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1922,7 +1927,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1961,7 +1966,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1990,7 +1995,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2070,7 +2075,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2090,11 +2095,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2131,7 +2136,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2219,7 +2224,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2354,7 +2359,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2453,7 +2458,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2500,7 +2505,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2589,7 +2594,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2709,7 +2714,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2882,7 +2887,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2928,7 +2933,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3195,7 +3200,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3253,7 +3258,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3277,7 +3282,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3343,7 +3348,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3423,7 +3428,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3484,7 +3489,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index ba76036a76..f120e05b88 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-09-25 11:38-0400\n"
+"POT-Creation-Date: 2018-10-04 17:13-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -183,7 +183,7 @@ msgstr ""
msgid "ARCHITECTURE"
msgstr ""
-#: lxc/remote.go:489
+#: lxc/remote.go:488
msgid "AUTH TYPE"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Add profiles to containers"
msgstr ""
-#: lxc/remote.go:349
+#: lxc/remote.go:348
#, c-format
msgid "Admin password for %s: "
msgstr ""
@@ -279,7 +279,7 @@ msgid ""
"as well as retrieve past log entries from it."
msgstr ""
-#: lxc/remote.go:332
+#: lxc/remote.go:331
#, c-format
msgid "Authentication type '%s' not supported by server"
msgstr ""
@@ -377,7 +377,7 @@ msgstr ""
msgid "Can't read from stdin: %s"
msgstr ""
-#: lxc/remote.go:635
+#: lxc/remote.go:634
msgid "Can't remove the default remote"
msgstr ""
@@ -406,12 +406,12 @@ msgstr ""
msgid "Candid domain to use"
msgstr ""
-#: lxc/remote.go:276
+#: lxc/remote.go:275
#, c-format
msgid "Certificate fingerprint: %s"
msgstr ""
-#: lxc/remote.go:388
+#: lxc/remote.go:387
msgid "Client certificate stored at server: "
msgstr ""
@@ -539,7 +539,7 @@ msgstr ""
msgid "Copying the storage volume: %s"
msgstr ""
-#: lxc/remote.go:291
+#: lxc/remote.go:290
msgid "Could not create server cert dir"
msgstr ""
@@ -698,8 +698,8 @@ msgstr ""
#: 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/publish.go:34 lxc/query.go:30
-#: lxc/remote.go:40 lxc/remote.go:91 lxc/remote.go:404 lxc/remote.go:440
-#: lxc/remote.go:545 lxc/remote.go:607 lxc/remote.go:657 lxc/remote.go:695
+#: 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
@@ -978,7 +978,7 @@ msgstr ""
msgid "Force using the local unix socket"
msgstr ""
-#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:444
+#: lxc/image.go:926 lxc/list.go:115 lxc/network.go:803 lxc/remote.go:443
msgid "Format (csv|json|table|yaml)"
msgstr ""
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "ISSUE DATE"
msgstr ""
-#: lxc/main.go:301
+#: lxc/main.go:306
msgid ""
"If this is your first time running LXD on this machine, you should also run: "
"lxd init"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Invalid config key column format (too many fields): '%s'"
msgstr ""
-#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:528
+#: lxc/image.go:1215 lxc/list.go:368 lxc/network.go:903 lxc/remote.go:527
#, c-format
msgid "Invalid format %q"
msgstr ""
@@ -1154,7 +1154,7 @@ msgid ""
"Invalid name in '%s', empty string is only allowed when defining maxWidth"
msgstr ""
-#: lxc/main.go:389
+#: lxc/main.go:394
msgid "Invalid number of arguments"
msgstr ""
@@ -1357,7 +1357,7 @@ msgstr ""
msgid "List storage volumes"
msgstr ""
-#: lxc/remote.go:439 lxc/remote.go:440
+#: lxc/remote.go:438 lxc/remote.go:439
msgid "List the available remotes"
msgstr ""
@@ -1628,11 +1628,11 @@ msgid "Must supply container name for: "
msgstr ""
#: lxc/cluster.go:124 lxc/list.go:461 lxc/network.go:858 lxc/profile.go:622
-#: lxc/remote.go:486 lxc/storage.go:549 lxc/storage_volume.go:1120
+#: lxc/remote.go:485 lxc/storage.go:549 lxc/storage_volume.go:1120
msgid "NAME"
msgstr ""
-#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:461 lxc/remote.go:466
+#: lxc/network.go:844 lxc/operation.go:141 lxc/remote.go:460 lxc/remote.go:465
msgid "NO"
msgstr ""
@@ -1747,11 +1747,11 @@ msgstr ""
msgid "PROFILES"
msgstr ""
-#: lxc/remote.go:488
+#: lxc/remote.go:487
msgid "PROTOCOL"
msgstr ""
-#: lxc/image.go:938 lxc/remote.go:490
+#: lxc/image.go:938 lxc/remote.go:489
msgid "PUBLIC"
msgstr ""
@@ -1763,6 +1763,11 @@ msgstr ""
msgid "Packets sent"
msgstr ""
+#: lxc/main.go:275
+#, c-format
+msgid "Password for %s: "
+msgstr ""
+
#: lxc/action.go:49 lxc/action.go:50
msgid "Pause containers"
msgstr ""
@@ -1904,12 +1909,12 @@ msgstr ""
msgid "Refreshing the image: %s"
msgstr ""
-#: lxc/remote.go:573
+#: lxc/remote.go:572
#, c-format
msgid "Remote %s already exists"
msgstr ""
-#: lxc/remote.go:565 lxc/remote.go:627 lxc/remote.go:677 lxc/remote.go:715
+#: lxc/remote.go:564 lxc/remote.go:626 lxc/remote.go:676 lxc/remote.go:714
#, c-format
msgid "Remote %s doesn't exist"
msgstr ""
@@ -1919,7 +1924,7 @@ msgstr ""
msgid "Remote %s exists as <%s>"
msgstr ""
-#: lxc/remote.go:569 lxc/remote.go:631 lxc/remote.go:719
+#: lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:718
#, c-format
msgid "Remote %s is static and cannot be modified"
msgstr ""
@@ -1958,7 +1963,7 @@ msgstr ""
msgid "Remove profiles from containers"
msgstr ""
-#: lxc/remote.go:606 lxc/remote.go:607
+#: lxc/remote.go:605 lxc/remote.go:606
msgid "Remove remotes"
msgstr ""
@@ -1987,7 +1992,7 @@ msgstr ""
msgid "Rename profiles"
msgstr ""
-#: lxc/remote.go:544 lxc/remote.go:545
+#: lxc/remote.go:543 lxc/remote.go:544
msgid "Rename remotes"
msgstr ""
@@ -2067,7 +2072,7 @@ msgstr ""
msgid "STATE"
msgstr ""
-#: lxc/remote.go:491
+#: lxc/remote.go:490
msgid "STATIC"
msgstr ""
@@ -2087,11 +2092,11 @@ msgstr ""
msgid "Server authentication type (tls or candid)"
msgstr ""
-#: lxc/remote.go:284
+#: lxc/remote.go:283
msgid "Server certificate NACKed by user"
msgstr ""
-#: lxc/remote.go:384
+#: lxc/remote.go:383
msgid "Server doesn't trust us after authentication"
msgstr ""
@@ -2128,7 +2133,7 @@ msgstr ""
msgid "Set storage volume configuration keys"
msgstr ""
-#: lxc/remote.go:694 lxc/remote.go:695
+#: lxc/remote.go:693 lxc/remote.go:694
msgid "Set the URL for the remote"
msgstr ""
@@ -2216,7 +2221,7 @@ msgstr ""
msgid "Show the container's last 100 log lines?"
msgstr ""
-#: lxc/remote.go:403 lxc/remote.go:404
+#: lxc/remote.go:402 lxc/remote.go:403
msgid "Show the default remote"
msgstr ""
@@ -2351,7 +2356,7 @@ msgstr ""
msgid "Swap (peak)"
msgstr ""
-#: lxc/remote.go:656 lxc/remote.go:657
+#: lxc/remote.go:655 lxc/remote.go:656
msgid "Switch the default remote"
msgstr ""
@@ -2450,7 +2455,7 @@ msgstr ""
msgid "To detach from the console, press: <ctrl>+a q"
msgstr ""
-#: lxc/main.go:304
+#: lxc/main.go:309
msgid "To start your first container, try: lxc launch ubuntu:18.04"
msgstr ""
@@ -2497,7 +2502,7 @@ msgstr ""
msgid "UPLOAD DATE"
msgstr ""
-#: lxc/cluster.go:125 lxc/remote.go:487
+#: lxc/cluster.go:125 lxc/remote.go:486
msgid "URL"
msgstr ""
@@ -2586,7 +2591,7 @@ msgstr ""
msgid "Whether or not to snapshot the container's running state"
msgstr ""
-#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:463 lxc/remote.go:468
+#: lxc/network.go:846 lxc/operation.go:143 lxc/remote.go:462 lxc/remote.go:467
msgid "YES"
msgstr ""
@@ -2706,7 +2711,7 @@ msgstr ""
msgid "create [<remote>:]<profile>"
msgstr ""
-#: lxc/remote.go:480
+#: lxc/remote.go:479
msgid "default"
msgstr ""
@@ -2879,7 +2884,7 @@ msgstr ""
msgid "get [<remote>:][<container>] <key>"
msgstr ""
-#: lxc/remote.go:402
+#: lxc/remote.go:401
msgid "get-default"
msgstr ""
@@ -2925,7 +2930,7 @@ msgstr ""
msgid "launch [<remote>:]<image> [<remote>:][<name>]"
msgstr ""
-#: lxc/alias.go:96 lxc/remote.go:437
+#: lxc/alias.go:96 lxc/remote.go:436
msgid "list"
msgstr ""
@@ -3192,7 +3197,7 @@ msgstr ""
msgid "no"
msgstr ""
-#: lxc/remote.go:277
+#: lxc/remote.go:276
msgid "ok (y/n)?"
msgstr ""
@@ -3250,7 +3255,7 @@ msgstr ""
msgid "remove <alias>"
msgstr ""
-#: lxc/remote.go:604
+#: lxc/remote.go:603
msgid "remove <remote>"
msgstr ""
@@ -3274,7 +3279,7 @@ msgstr ""
msgid "rename <old alias> <new alias>"
msgstr ""
-#: lxc/remote.go:542
+#: lxc/remote.go:541
msgid "rename <remote> <new-name>"
msgstr ""
@@ -3340,7 +3345,7 @@ msgstr ""
msgid "set [<remote>:][<container>] <key> <value>"
msgstr ""
-#: lxc/remote.go:693
+#: lxc/remote.go:692
msgid "set-url <remote> <URL>"
msgstr ""
@@ -3420,7 +3425,7 @@ msgstr ""
msgid "storage"
msgstr ""
-#: lxc/remote.go:655
+#: lxc/remote.go:654
msgid "switch <remote>"
msgstr ""
@@ -3481,7 +3486,7 @@ msgstr ""
msgid "volume"
msgstr ""
-#: lxc/remote.go:283
+#: lxc/remote.go:282
msgid "y"
msgstr ""
More information about the lxc-devel
mailing list