From 841c023dad44872c89cd193e52ae3b98fa8c0334 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 10:28:31 +0100 Subject: [PATCH 1/8] api: Add api extension server_version_lts Signed-off-by: Din Music --- doc/api-extensions.md | 5 +++++ shared/version/api.go | 1 + 2 files changed, 6 insertions(+) diff --git a/doc/api-extensions.md b/doc/api-extensions.md index 960ebab28282..f4a7c43a61df 100644 --- a/doc/api-extensions.md +++ b/doc/api-extensions.md @@ -2351,3 +2351,8 @@ This field indicates which instance types are supported by the server. Adds a `mounted` field to disk resources that LXD discovers on the system, reporting whether that disk or partition is mounted. + +## `server_version_lts` + +The API extension adds indication whether the LXD version is an LTS release. +This is indicated when command `lxc version` is executed or when `/1.0` endpoint is queried. diff --git a/shared/version/api.go b/shared/version/api.go index 368f7dc95c33..a97b59933b63 100644 --- a/shared/version/api.go +++ b/shared/version/api.go @@ -396,6 +396,7 @@ var APIExtensions = []string{ "metrics_instances_count", "server_instance_type_info", "resources_disk_mounted", + "server_version_lts", } // APIExtensionsCount returns the number of available API extensions. From 121cd7e4d1a9155cdacbf0c17917854cf369cb59 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 10:29:12 +0100 Subject: [PATCH 2/8] shared/version: Add boolean indicating whether this is an LTS release Signed-off-by: Din Music --- shared/version/flex.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared/version/flex.go b/shared/version/flex.go index 7fdac6d90e43..b149f3f22d17 100644 --- a/shared/version/flex.go +++ b/shared/version/flex.go @@ -2,3 +2,6 @@ package version // Version contains the LXD version number. var Version = "5.20" + +// IsLTSVersion indicates this is an LTS version of LXD. +var IsLTSVersion = false From d7f51b5dce8a27d3b5ffeaa30c5c3a481ff703d7 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 10:43:23 +0100 Subject: [PATCH 3/8] shared/api/server: Add server lts indication in ServerEnvironment Signed-off-by: Din Music --- shared/api/server.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shared/api/server.go b/shared/api/server.go index 6c4a91995029..8501914d0924 100644 --- a/shared/api/server.go +++ b/shared/api/server.go @@ -111,6 +111,10 @@ type ServerEnvironment struct { // Example: 4.11 ServerVersion string `json:"server_version" yaml:"server_version"` + // Whether the version is an LTS release + // Example: false + ServerLTS bool `json:"server_lts" yaml:"server_lts"` + // List of active storage drivers (separate by " | ") // Example: dir | zfs Storage string `json:"storage" yaml:"storage"` From a69a0ea11109e3c1650820b56bfc3631c1b19af2 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 10:44:15 +0100 Subject: [PATCH 4/8] lxd/api_1.0: Indicate lts version on server Signed-off-by: Din Music --- lxd/api_1.0.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lxd/api_1.0.go b/lxd/api_1.0.go index 52c96e265370..8d278d7a2817 100644 --- a/lxd/api_1.0.go +++ b/lxd/api_1.0.go @@ -309,6 +309,7 @@ func api10Get(d *Daemon, r *http.Request) response.Response { Server: "lxd", ServerPid: os.Getpid(), ServerVersion: version.Version, + ServerLTS: version.IsLTSVersion, ServerClustered: s.ServerClustered, ServerEventMode: string(cluster.ServerEventMode()), ServerName: serverName, From 9b8986d14fc2c884b26ad48d9ccaa54a0272c53f Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 11:04:36 +0100 Subject: [PATCH 5/8] lxc/version: Indicate LTS version of the client and/or server Signed-off-by: Din Music --- lxc/main.go | 3 +++ lxc/version.go | 16 ++++++++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/lxc/main.go b/lxc/main.go index ceec31c43c28..b86cd272ab59 100644 --- a/lxc/main.go +++ b/lxc/main.go @@ -106,6 +106,9 @@ For help with any of those, simply call them with --help.`)) // Version handling app.SetVersionTemplate("{{.Version}}\n") app.Version = version.Version + if version.IsLTSVersion { + app.Version = fmt.Sprintf("%s LTS", version.Version) + } // alias sub-command aliasCmd := cmdAlias{global: &globalCmd} diff --git a/lxc/version.go b/lxc/version.go index 50721b382d6d..576979dacc4e 100644 --- a/lxc/version.go +++ b/lxc/version.go @@ -34,7 +34,11 @@ func (c *cmdVersion) Run(cmd *cobra.Command, args []string) error { return err } - fmt.Printf(i18n.G("Client version: %s\n"), version.Version) + // Client version + clientVersion := version.Version + if version.IsLTSVersion { + clientVersion = fmt.Sprintf("%s LTS", clientVersion) + } // Remote version remote := "" @@ -45,17 +49,21 @@ func (c *cmdVersion) Run(cmd *cobra.Command, args []string) error { } } - version := i18n.G("unreachable") + serverVersion := i18n.G("unreachable") resources, err := c.global.ParseServers(remote) if err == nil { resource := resources[0] info, _, err := resource.server.GetServer() if err == nil { - version = info.Environment.ServerVersion + serverVersion = info.Environment.ServerVersion + if info.Environment.ServerLTS { + serverVersion = fmt.Sprintf("%s LTS", serverVersion) + } } } - fmt.Printf(i18n.G("Server version: %s\n"), version) + fmt.Printf(i18n.G("Client version: %s\n"), clientVersion) + fmt.Printf(i18n.G("Server version: %s\n"), serverVersion) return nil } From eaaf5bb51ae6642b40a2b4c21300435018b7f5d2 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 11:54:48 +0100 Subject: [PATCH 6/8] lxd/main_version: Indicate lts version of the server Signed-off-by: Din Music --- lxd/main.go | 4 ++++ lxd/main_version.go | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lxd/main.go b/lxd/main.go index 0fd8d9bbb5a6..573c32679577 100644 --- a/lxd/main.go +++ b/lxd/main.go @@ -2,6 +2,7 @@ package main import ( "bufio" + "fmt" "os" "github.com/canonical/go-dqlite" @@ -104,6 +105,9 @@ func main() { // Version handling app.SetVersionTemplate("{{.Version}}\n") app.Version = version.Version + if version.IsLTSVersion { + app.Version = fmt.Sprintf("%s LTS", version.Version) + } // activateifneeded sub-command activateifneededCmd := cmdActivateifneeded{global: &globalCmd} diff --git a/lxd/main_version.go b/lxd/main_version.go index c54a995eeb16..a4ef60c38458 100644 --- a/lxd/main_version.go +++ b/lxd/main_version.go @@ -26,7 +26,11 @@ func (c *cmdVersion) Command() *cobra.Command { } func (c *cmdVersion) Run(cmd *cobra.Command, args []string) error { - fmt.Println(version.Version) + if version.IsLTSVersion { + fmt.Println(version.Version, "LTS") + } else { + fmt.Println(version.Version) + } return nil } From 5700f3e8568554e80779b59133de51a3c38a5824 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 11:57:52 +0100 Subject: [PATCH 7/8] doc: Update rest definition Signed-off-by: Din Music --- doc/rest-api.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/rest-api.yaml b/doc/rest-api.yaml index 35e7f876e8f0..e11d754a25f1 100644 --- a/doc/rest-api.yaml +++ b/doc/rest-api.yaml @@ -5377,6 +5377,11 @@ definitions: example: full-mesh type: string x-go-name: ServerEventMode + server_lts: + description: Whether the version is an LTS release + example: false + type: boolean + x-go-name: ServerLTS server_name: description: Server hostname example: castiana From ac92eccdde1bea54c893c529b5259ef92c083b65 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 30 Jan 2024 11:57:27 +0100 Subject: [PATCH 8/8] i18n: Update translations Signed-off-by: Din Music --- po/ar.po | 20 ++++++++++---------- po/ber.po | 20 ++++++++++---------- po/bg.po | 20 ++++++++++---------- po/ca.po | 20 ++++++++++---------- po/cs.po | 20 ++++++++++---------- po/de.po | 20 ++++++++++---------- po/el.po | 20 ++++++++++---------- po/eo.po | 20 ++++++++++---------- po/es.po | 20 ++++++++++---------- po/fa.po | 20 ++++++++++---------- po/fi.po | 20 ++++++++++---------- po/fr.po | 20 ++++++++++---------- po/he.po | 20 ++++++++++---------- po/hi.po | 20 ++++++++++---------- po/id.po | 20 ++++++++++---------- po/it.po | 20 ++++++++++---------- po/ja.po | 20 ++++++++++---------- po/ka.po | 20 ++++++++++---------- po/ko.po | 20 ++++++++++---------- po/lxd.pot | 20 ++++++++++---------- po/mr.po | 20 ++++++++++---------- po/nb_NO.po | 20 ++++++++++---------- po/nl.po | 20 ++++++++++---------- po/pa.po | 20 ++++++++++---------- po/pl.po | 20 ++++++++++---------- po/pt.po | 20 ++++++++++---------- po/pt_BR.po | 20 ++++++++++---------- po/ru.po | 20 ++++++++++---------- po/si.po | 20 ++++++++++---------- po/sl.po | 20 ++++++++++---------- po/sr.po | 20 ++++++++++---------- po/sv.po | 20 ++++++++++---------- po/te.po | 20 ++++++++++---------- po/th.po | 20 ++++++++++---------- po/tr.po | 20 ++++++++++---------- po/tzm.po | 20 ++++++++++---------- po/ug.po | 20 ++++++++++---------- po/uk.po | 20 ++++++++++---------- po/zh_Hans.po | 20 ++++++++++---------- po/zh_Hant.po | 20 ++++++++++---------- 40 files changed, 400 insertions(+), 400 deletions(-) diff --git a/po/ar.po b/po/ar.po index 99c54ecb8b08..bba89b4d41f2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -971,7 +971,7 @@ msgstr "" msgid "Client certificate now trusted by server:" msgstr "" -#: lxc/version.go:37 +#: lxc/version.go:65 #, c-format msgid "Client version: %s\n" msgstr "" @@ -2527,7 +2527,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:390 +#: lxc/main.go:393 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2748,7 +2748,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:487 +#: lxc/main.go:490 msgid "Invalid number of arguments" msgstr "" @@ -4048,7 +4048,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:353 +#: lxc/main.go:356 #, c-format msgid "Password for %s: " msgstr "" @@ -4735,7 +4735,7 @@ msgstr "" msgid "Server protocol (lxd or simplestreams)" msgstr "" -#: lxc/version.go:58 +#: lxc/version.go:66 #, c-format msgid "Server version: %s\n" msgstr "" @@ -5058,7 +5058,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:265 lxc/main.go:266 +#: lxc/main.go:268 lxc/main.go:269 msgid "Show less common commands" msgstr "" @@ -5556,7 +5556,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:287 +#: lxc/main.go:290 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5592,7 +5592,7 @@ msgstr "" msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6990,7 +6990,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/ber.po b/po/ber.po index 111e290fd698..71cdf870ba26 100644 --- a/po/ber.po +++ b/po/ber.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Berber +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/bg.po b/po/bg.po index 9fd5ffdf0630..d51bab5cc381 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/ca.po b/po/ca.po index 85c021b3ee74..065b72bf65bc 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/cs.po b/po/cs.po index 24ba114b13c6..c368a5488b10 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/de.po b/po/de.po index 60e36bbc5eaa..7223d9f9d918 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: LXD\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Krombel \n" "Language-Team: German +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -8243,7 +8243,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/el.po b/po/el.po index 43509a0adfd6..d5032b5b1f7c 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7094,7 +7094,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/eo.po b/po/eo.po index ad11c1cf8a46..0caf684bc922 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/es.po b/po/es.po index c7bba65ce45a..6c48549e9daa 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2023-06-16 20:55+0000\n" "Last-Translator: Francisco Serrador \n" "Language-Team: Spanish +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7537,7 +7537,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/fa.po b/po/fa.po index 6b0bdda787fc..53a4456c699c 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/fi.po b/po/fi.po index 0c35cc726c7b..8856c8aa83ef 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/fr.po b/po/fr.po index 74bc2361edcf..041c65263d90 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: LXD\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Wivik \n" "Language-Team: French +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 #, fuzzy msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" @@ -8514,7 +8514,7 @@ msgstr "" msgid "total space" msgstr "espace total" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "inaccessible" diff --git a/po/he.po b/po/he.po index a73aad430974..66ef2a6e1002 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hebrew +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6994,7 +6994,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/hi.po b/po/hi.po index 8700edd33c17..f9517d14a744 100644 --- a/po/hi.po +++ b/po/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hindi +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/id.po b/po/id.po index 4d294f3b0f23..044708b57543 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Indonesian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/it.po b/po/it.po index 0437d2da7542..997772a17a1e 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Luigi Operoso \n" "Language-Team: Italian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7533,7 +7533,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/ja.po b/po/ja.po index a819590626c6..602f278fea95 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: LXD\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2023-03-10 15:14+0000\n" "Last-Translator: KATOH Yasufumi \n" "Language-Team: Japanese +a q" msgstr "コンソールから切り離すには +a q を押します" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7833,7 +7833,7 @@ msgstr "" msgid "total space" msgstr "総容量" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "サーバに接続できません" diff --git a/po/ka.po b/po/ka.po index 2d3faba978a6..0ed127f32333 100644 --- a/po/ka.po +++ b/po/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -971,7 +971,7 @@ msgstr "" msgid "Client certificate now trusted by server:" msgstr "" -#: lxc/version.go:37 +#: lxc/version.go:65 #, c-format msgid "Client version: %s\n" msgstr "" @@ -2527,7 +2527,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:390 +#: lxc/main.go:393 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2748,7 +2748,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:487 +#: lxc/main.go:490 msgid "Invalid number of arguments" msgstr "" @@ -4048,7 +4048,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:353 +#: lxc/main.go:356 #, c-format msgid "Password for %s: " msgstr "" @@ -4735,7 +4735,7 @@ msgstr "" msgid "Server protocol (lxd or simplestreams)" msgstr "" -#: lxc/version.go:58 +#: lxc/version.go:66 #, c-format msgid "Server version: %s\n" msgstr "" @@ -5058,7 +5058,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:265 lxc/main.go:266 +#: lxc/main.go:268 lxc/main.go:269 msgid "Show less common commands" msgstr "" @@ -5556,7 +5556,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:287 +#: lxc/main.go:290 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5592,7 +5592,7 @@ msgstr "" msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6990,7 +6990,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/ko.po b/po/ko.po index 3089cff324bb..4842667101cc 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Korean +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/lxd.pot b/po/lxd.pot index 947558b2f968..d2e7e8d4c33c 100644 --- a/po/lxd.pot +++ b/po/lxd.pot @@ -7,7 +7,7 @@ msgid "" msgstr "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" - "POT-Creation-Date: 2024-01-24 18:09-0500\n" + "POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -934,7 +934,7 @@ msgstr "" msgid "Client certificate now trusted by server:" msgstr "" -#: lxc/version.go:37 +#: lxc/version.go:65 #, c-format msgid "Client version: %s\n" msgstr "" @@ -2300,7 +2300,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:390 +#: lxc/main.go:393 msgid "If this is your first time running LXD on this machine, you should also run: lxd init" msgstr "" @@ -2517,7 +2517,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:487 +#: lxc/main.go:490 msgid "Invalid number of arguments" msgstr "" @@ -3717,7 +3717,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:353 +#: lxc/main.go:356 #, c-format msgid "Password for %s: " msgstr "" @@ -4375,7 +4375,7 @@ msgstr "" msgid "Server protocol (lxd or simplestreams)" msgstr "" -#: lxc/version.go:58 +#: lxc/version.go:66 #, c-format msgid "Server version: %s\n" msgstr "" @@ -4670,7 +4670,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:265 lxc/main.go:266 +#: lxc/main.go:268 lxc/main.go:269 msgid "Show less common commands" msgstr "" @@ -5161,7 +5161,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:287 +#: lxc/main.go:290 msgid "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a remote LXD server.\n" "\n" @@ -5193,7 +5193,7 @@ msgstr "" msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" msgstr "" @@ -6493,7 +6493,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/mr.po b/po/mr.po index 2e04d1d599f6..fe543130738d 100644 --- a/po/mr.po +++ b/po/mr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Marathi +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 319f63a5266a..0c4cbab6aa95 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: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/nl.po b/po/nl.po index 98f3a723cca6..8b2b08c0cca7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7210,7 +7210,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/pa.po b/po/pa.po index f30697b9ed48..9a1ed78b92d5 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Punjabi +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/pl.po b/po/pl.po index 26182372790a..8295f62e2a0a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7244,7 +7244,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/pt.po b/po/pt.po index 66eecb684ba6..33fc8de5b4f1 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -971,7 +971,7 @@ msgstr "" msgid "Client certificate now trusted by server:" msgstr "" -#: lxc/version.go:37 +#: lxc/version.go:65 #, c-format msgid "Client version: %s\n" msgstr "" @@ -2527,7 +2527,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:390 +#: lxc/main.go:393 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2748,7 +2748,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:487 +#: lxc/main.go:490 msgid "Invalid number of arguments" msgstr "" @@ -4048,7 +4048,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:353 +#: lxc/main.go:356 #, c-format msgid "Password for %s: " msgstr "" @@ -4735,7 +4735,7 @@ msgstr "" msgid "Server protocol (lxd or simplestreams)" msgstr "" -#: lxc/version.go:58 +#: lxc/version.go:66 #, c-format msgid "Server version: %s\n" msgstr "" @@ -5058,7 +5058,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:265 lxc/main.go:266 +#: lxc/main.go:268 lxc/main.go:269 msgid "Show less common commands" msgstr "" @@ -5556,7 +5556,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:287 +#: lxc/main.go:290 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5592,7 +5592,7 @@ msgstr "" msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6990,7 +6990,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 90ea261c098f..ad49039bccc0 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: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Renato dos Santos \n" "Language-Team: Portuguese (Brazil) +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7561,7 +7561,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/ru.po b/po/ru.po index d0a4ac7a7f5a..7aab5b44ca73 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Александр Киль \n" "Language-Team: Russian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -8028,7 +8028,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/si.po b/po/si.po index 241a4caf335f..f248e7aa18e0 100644 --- a/po/si.po +++ b/po/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Sinhala +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/sl.po b/po/sl.po index 2a4c132c4519..5dc955d0a620 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovenian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6994,7 +6994,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/sr.po b/po/sr.po index f4e5cb8214fd..838944b4b7e9 100644 --- a/po/sr.po +++ b/po/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6994,7 +6994,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/sv.po b/po/sv.po index 7dbfac27baec..c86ac6ed4e35 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/te.po b/po/te.po index 0ebbe79245df..5f5d02f594d5 100644 --- a/po/te.po +++ b/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Telugu +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/th.po b/po/th.po index 3b4e7a3b1f34..ae79f466ef74 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -971,7 +971,7 @@ msgstr "" msgid "Client certificate now trusted by server:" msgstr "" -#: lxc/version.go:37 +#: lxc/version.go:65 #, c-format msgid "Client version: %s\n" msgstr "" @@ -2527,7 +2527,7 @@ msgstr "" msgid "If the snapshot name already exists, delete and create a new one" msgstr "" -#: lxc/main.go:390 +#: lxc/main.go:393 msgid "" "If this is your first time running LXD on this machine, you should also run: " "lxd init" @@ -2748,7 +2748,7 @@ msgstr "" msgid "Invalid new snapshot name, parent volume must be the same as source" msgstr "" -#: lxc/main.go:487 +#: lxc/main.go:490 msgid "Invalid number of arguments" msgstr "" @@ -4048,7 +4048,7 @@ msgstr "" msgid "Partitions:" msgstr "" -#: lxc/main.go:353 +#: lxc/main.go:356 #, c-format msgid "Password for %s: " msgstr "" @@ -4735,7 +4735,7 @@ msgstr "" msgid "Server protocol (lxd or simplestreams)" msgstr "" -#: lxc/version.go:58 +#: lxc/version.go:66 #, c-format msgid "Server version: %s\n" msgstr "" @@ -5058,7 +5058,7 @@ msgstr "" msgid "Show instance or server information" msgstr "" -#: lxc/main.go:265 lxc/main.go:266 +#: lxc/main.go:268 lxc/main.go:269 msgid "Show less common commands" msgstr "" @@ -5556,7 +5556,7 @@ msgstr "" msgid "This LXD server is not available on the network" msgstr "" -#: lxc/main.go:287 +#: lxc/main.go:290 msgid "" "This client hasn't been configured to use a remote LXD server yet.\n" "As your platform can't run native Linux instances, you must connect to a " @@ -5592,7 +5592,7 @@ msgstr "" msgid "To detach from the console, press: +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6990,7 +6990,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/tr.po b/po/tr.po index 1321d7894256..5abc7934eb72 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Turkish +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/tzm.po b/po/tzm.po index 14a911d2eed6..3f653c27a0a5 100644 --- a/po/tzm.po +++ b/po/tzm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Tamazight (Central Atlas) +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/ug.po b/po/ug.po index e7716d8f9579..68d9957089ff 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Uyghur +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/uk.po b/po/uk.po index 6c15a0605c78..06d6e877e699 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6994,7 +6994,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 2154bb827cd7..86ffd8f65c19 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: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: 0x0916 \n" "Language-Team: Chinese (Simplified) +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -7143,7 +7143,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr "" diff --git a/po/zh_Hant.po b/po/zh_Hant.po index 13515ea840a8..9db0076f6777 100644 --- a/po/zh_Hant.po +++ b/po/zh_Hant.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: lxd\n" "Report-Msgid-Bugs-To: lxd@lists.canonical.com\n" -"POT-Creation-Date: 2024-01-24 18:09-0500\n" +"POT-Creation-Date: 2024-01-30 11:57+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) +a q" msgstr "" -#: lxc/main.go:395 +#: lxc/main.go:398 msgid "" "To start your first container, try: lxc launch ubuntu:22.04\n" "Or for a virtual machine: lxc launch ubuntu:22.04 --vm" @@ -6993,7 +6993,7 @@ msgstr "" msgid "total space" msgstr "" -#: lxc/version.go:48 +#: lxc/version.go:52 msgid "unreachable" msgstr ""