From 8c0ede9af709a74343b5c0ac31fdd154314a58db Mon Sep 17 00:00:00 2001 From: Thomas Parrott Date: Fri, 18 Oct 2024 11:30:47 +0100 Subject: [PATCH 1/5] lxd/network/driver/bridge: Handle concurrent collection of member leases correctly Appending to a slice concurrently is not supported. Signed-off-by: Thomas Parrott (cherry picked from commit 685a4a6c7caccbee847150c4994bbce74487594c) --- lxd/network/driver_bridge.go | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/lxd/network/driver_bridge.go b/lxd/network/driver_bridge.go index bfcd9358d6a8..239d858407c2 100644 --- a/lxd/network/driver_bridge.go +++ b/lxd/network/driver_bridge.go @@ -3110,6 +3110,18 @@ func (n *bridge) Leases(projectName string, clientType request.ClientType) ([]ap return nil, err } + leasesCh := make(chan api.NetworkLease) + + var wg sync.WaitGroup + wg.Add(1) + go func() { + for lease := range leasesCh { + leases = append(leases, lease) + } + + wg.Done() + }() + err = notifier(func(client lxd.InstanceServer) error { memberLeases, err := client.GetNetworkLeases(n.name) if err != nil { @@ -3119,12 +3131,17 @@ func (n *bridge) Leases(projectName string, clientType request.ClientType) ([]ap // Add local leases from other members, filtering them for MACs that belong to the project. for _, lease := range memberLeases { if lease.Hwaddr != "" && shared.StringInSlice(lease.Hwaddr, projectMacs) { - leases = append(leases, lease) + leasesCh <- lease } } return nil }) + + // Finish up and wait for go routine. + close(leasesCh) + wg.Wait() + if err != nil { return nil, err } From d4b2db82380d1b0c619f6fd3bd7b544af75262f9 Mon Sep 17 00:00:00 2001 From: Wesley Hershberger Date: Fri, 18 Oct 2024 15:20:21 -0500 Subject: [PATCH 2/5] lxc/profile: Fix typo in profile set usage Signed-off-by: Wesley Hershberger (cherry picked from commit 802ec9a94cf64b2d90d51aa977e8b85926b93810) --- lxc/profile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxc/profile.go b/lxc/profile.go index 6d5bb219d183..594092d8ed27 100644 --- a/lxc/profile.go +++ b/lxc/profile.go @@ -797,7 +797,7 @@ type cmdProfileSet struct { func (c *cmdProfileSet) Command() *cobra.Command { cmd := &cobra.Command{} - cmd.Use = usage("set", i18n.G("[:] ...")) + cmd.Use = usage("set", i18n.G("[:] =...")) cmd.Short = i18n.G("Set profile configuration keys") cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G( `Set profile configuration keys From ffeb14aaa51f48876edaab59b8b3490cdfa18ac5 Mon Sep 17 00:00:00 2001 From: Thomas Parrott Date: Mon, 21 Oct 2024 14:19:19 +0100 Subject: [PATCH 3/5] i18n: Update translation templates. Signed-off-by: Thomas Parrott --- po/lxd.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/lxd.pot b/po/lxd.pot index 9527e1d5fce6..bb50bd75951c 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-10-18 13:21+0000\n" + "POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5719,7 +5719,7 @@ msgid "[:] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 From 0c0194d0568c3518458eb951b82add13cde8263a Mon Sep 17 00:00:00 2001 From: Thomas Parrott Date: Mon, 21 Oct 2024 14:19:21 +0100 Subject: [PATCH 4/5] i18n: Update translations. Signed-off-by: Thomas Parrott --- po/ber.po | 4 ++-- po/bg.po | 4 ++-- po/ca.po | 4 ++-- po/cs.po | 4 ++-- po/de.po | 4 ++-- po/el.po | 4 ++-- po/eo.po | 4 ++-- po/es.po | 4 ++-- po/fa.po | 4 ++-- po/fi.po | 4 ++-- po/fr.po | 4 ++-- po/he.po | 4 ++-- po/hi.po | 4 ++-- po/id.po | 4 ++-- po/it.po | 4 ++-- po/ja.po | 5 +++-- po/ko.po | 4 ++-- po/mr.po | 4 ++-- po/nb_NO.po | 4 ++-- po/nl.po | 4 ++-- po/pa.po | 4 ++-- po/pl.po | 4 ++-- po/pt_BR.po | 7 ++++--- po/ru.po | 4 ++-- po/si.po | 4 ++-- po/sl.po | 4 ++-- po/sr.po | 4 ++-- po/sv.po | 4 ++-- po/te.po | 4 ++-- po/th.po | 4 ++-- po/tr.po | 4 ++-- po/tzm.po | 4 ++-- po/ug.po | 4 ++-- po/uk.po | 4 ++-- po/zh_Hans.po | 4 ++-- po/zh_Hant.po | 4 ++-- 36 files changed, 75 insertions(+), 73 deletions(-) diff --git a/po/ber.po b/po/ber.po index ed5645c3b2b2..0c5e42b29b8a 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Berber :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/bg.po b/po/bg.po index de74c0b3520a..1ef69293be36 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/ca.po b/po/ca.po index 5068af732d7d..7a0be32958ad 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/cs.po b/po/cs.po index 8ab0a38fced8..19790a9fcfa3 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/de.po b/po/de.po index b5de5ad1dde9..d373a3493abe 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Krombel \n" "Language-Team: German :] ..." +msgid "[:] =..." msgstr "" "Ändert den Laufzustand eines Containers in %s.\n" "\n" diff --git a/po/el.po b/po/el.po index f38b82e9a9c0..313c383f9088 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/eo.po b/po/eo.po index c2e9ba31bfb6..604e5c0169c6 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/es.po b/po/es.po index ebb89e36761c..89fb00259333 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Alonso José Lara Plana \n" "Language-Team: Spanish :] ..." +msgid "[:] =..." msgstr "No se puede proveer el nombre del container a la lista" #: lxc/config_device.go:445 diff --git a/po/fa.po b/po/fa.po index 5e83772f742f..7d661e311697 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/fi.po b/po/fi.po index 61e6455d26a9..25d11f1ac082 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/fr.po b/po/fr.po index 3a1a9b4ee707..264d5b39ab3b 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Wivik \n" "Language-Team: French :] ..." +msgid "[:] =..." msgstr "" "Change l'état d'un ou plusieurs conteneurs à %s.\n" "\n" diff --git a/po/he.po b/po/he.po index 228abdb6fb46..684f59e163eb 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hebrew :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/hi.po b/po/hi.po index c189cdc28dd2..49e7c5be59ac 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hindi :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/id.po b/po/id.po index 270045a22f9c..3609f7e5ae78 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Indonesian :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/it.po b/po/it.po index 9418be03e1e9..f7b162d80f9b 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Luigi Operoso \n" "Language-Team: Italian :] ..." +msgid "[:] =..." msgstr "Creazione del container in corso" #: lxc/config_device.go:445 diff --git a/po/ja.po b/po/ja.po index 2f3d7176f074..5cd0d803c537 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-31 14:23+0000\n" "Last-Translator: KATOH Yasufumi \n" "Language-Team: Japanese :] " msgstr "[:] " #: lxc/profile.go:800 -msgid "[:] ..." +#, fuzzy +msgid "[:] =..." msgstr "[:] ..." #: lxc/config_device.go:445 diff --git a/po/ko.po b/po/ko.po index 6d59c137cf7c..bdc2ac9606cd 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Korean :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/mr.po b/po/mr.po index 852bbdd45d55..0bd2d5b28d27 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Marathi :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/nb_NO.po b/po/nb_NO.po index 323c0926e6d7..c98b18f6de98 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/nl.po b/po/nl.po index 5e0074a61626..81d1c3f5f9e0 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/pa.po b/po/pa.po index a0099242021a..6779fadaf4dd 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Punjabi :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/pl.po b/po/pl.po index 6941ab253ec2..c0137b35bb5e 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/pt_BR.po b/po/pt_BR.po index 139e2f0622aa..e4822f6dd8f9 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Renato dos Santos \n" "Language-Team: Portuguese (Brazil) :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." -msgstr "" +#, fuzzy +msgid "[:] =..." +msgstr "Editar templates de arquivo do container" #: lxc/config_device.go:445 msgid "[:] ..." diff --git a/po/ru.po b/po/ru.po index ebedfec16c98..5f0f8d4b73d4 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Александр Киль \n" "Language-Team: Russian :] ..." +msgid "[:] =..." msgstr "" "Изменение состояния одного или нескольких контейнеров %s.\n" "\n" diff --git a/po/si.po b/po/si.po index 7b2cc7201052..e9ee65a07bd7 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Sinhala :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/sl.po b/po/sl.po index d00046dfb85f..155b5ec31173 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovenian :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/sr.po b/po/sr.po index 9b0e084b01b0..837bb9323aff 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/sv.po b/po/sv.po index 0ce339b455bc..6d1bd1641a6b 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/te.po b/po/te.po index 2e737ea502e2..03ed0ab5339f 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Telugu :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/th.po b/po/th.po index 7a2db525aa78..759959b353b2 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -6085,7 +6085,7 @@ msgid "[:] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/tr.po b/po/tr.po index 7e3eb1479518..b64974dddcab 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Turkish :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/tzm.po b/po/tzm.po index fbc30ee9320e..a73593059a28 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Tamazight (Central Atlas) :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/ug.po b/po/ug.po index f18b087620f5..50a1c4982907 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Uyghur :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/uk.po b/po/uk.po index f820f97d16fe..c5cea5b99d56 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 75874b4dec23..41659143c3c3 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: 0x0916 \n" "Language-Team: Chinese (Simplified) :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 diff --git a/po/zh_Hant.po b/po/zh_Hant.po index 245519e8d8e8..d8d2afc87b1b 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-10-18 13:21+0000\n" +"POT-Creation-Date: 2024-10-21 14:19+0100\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) :] " msgstr "" #: lxc/profile.go:800 -msgid "[:] ..." +msgid "[:] =..." msgstr "" #: lxc/config_device.go:445 From ef931eec9e9d44b43ec58bece32ba22e8ec6e11c Mon Sep 17 00:00:00 2001 From: Thomas Parrott Date: Mon, 21 Oct 2024 14:19:54 +0100 Subject: [PATCH 5/5] gomod: Update deps Signed-off-by: Thomas Parrott --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index e10895ce4d20..169093d9b379 100644 --- a/go.mod +++ b/go.mod @@ -126,7 +126,7 @@ require ( golang.org/x/mod v0.21.0 // indirect golang.org/x/net v0.30.0 // indirect golang.org/x/tools v0.26.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect google.golang.org/grpc v1.67.1 // indirect gopkg.in/errgo.v1 v1.0.1 // indirect gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect diff --git a/go.sum b/go.sum index a657ee2a16c3..5f406a0032c1 100644 --- a/go.sum +++ b/go.sum @@ -1034,8 +1034,8 @@ google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 h1:9+tzLLstTlPTRyJ google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9/go.mod h1:mqHbVIp48Muh7Ywss/AD6I5kNVKZMmAa/QEW58Gxp2s= google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 h1:wKguEg1hsxI2/L3hUYrpo1RVi48K+uTyzKqprwLXsb8= google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142/go.mod h1:d6be+8HhtEtucleCbxpPW9PA9XwISACu8nvpPqF0BVo= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 h1:QCqS/PdaHTSWGvupk2F/ehwHtGc0/GYkT+3GAcR1CCc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 h1:X58yt85/IXCx0Y3ZwN6sEIKZzQtDEYaBWrDvErdXrRE= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=