From 3a1b509b106caccca42492c439a79ecacede680c Mon Sep 17 00:00:00 2001 From: Vishesh Agrawal Date: Tue, 16 Apr 2024 09:54:01 +0200 Subject: [PATCH 1/3] lxc/profile: Add support for creating from YAML Part of #741 Signed-off-by: Vishesh Agrawal (cherry picked from commit 7c84b4b60b864f722ac373db9f1ad3280edb9bd2) Signed-off-by: Gabriel Mougard License: Apache-2.0 --- lxc/profile.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lxc/profile.go b/lxc/profile.go index 31ad1baca02f..7d6df8fdad3a 100644 --- a/lxc/profile.go +++ b/lxc/profile.go @@ -319,6 +319,10 @@ func (c *cmdProfileCreate) command() *cobra.Command { cmd.Short = i18n.G("Create profiles") cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G( `Create profiles`)) + cmd.Example = cli.FormatSection("", i18n.G(`lxc profile create p1 + +lxc profile create p1 < config.yaml + Create profile with configuration from config.yaml`)) cmd.RunE = c.run @@ -326,12 +330,27 @@ func (c *cmdProfileCreate) command() *cobra.Command { } func (c *cmdProfileCreate) run(cmd *cobra.Command, args []string) error { + var stdinData api.ProfilePut + // Quick checks. exit, err := c.global.CheckArgs(cmd, args, 1, 1) if exit { return err } + // If stdin isn't a terminal, read text from it + if !termios.IsTerminal(getStdinFd()) { + contents, err := io.ReadAll(os.Stdin) + if err != nil { + return err + } + + err = yaml.Unmarshal(contents, &stdinData) + if err != nil { + return err + } + } + // Parse remote resources, err := c.global.ParseServers(args[0]) if err != nil { @@ -347,6 +366,7 @@ func (c *cmdProfileCreate) run(cmd *cobra.Command, args []string) error { // Create the profile profile := api.ProfilesPost{} profile.Name = resource.name + profile.ProfilePut = stdinData err = resource.server.CreateProfile(profile) if err != nil { From 915315f677a576402feb7713200ce80ff9350281 Mon Sep 17 00:00:00 2001 From: Gabriel Mougard Date: Thu, 1 Aug 2024 17:56:29 +0200 Subject: [PATCH 2/3] i18n: update translation templates Signed-off-by: Gabriel Mougard --- po/ar.po | 92 ++++++++++++++++++++++-------------------- po/ber.po | 92 ++++++++++++++++++++++-------------------- po/bg.po | 92 ++++++++++++++++++++++-------------------- po/ca.po | 92 ++++++++++++++++++++++-------------------- po/cs.po | 92 ++++++++++++++++++++++-------------------- po/de.po | 92 ++++++++++++++++++++++-------------------- po/el.po | 92 ++++++++++++++++++++++-------------------- po/eo.po | 92 ++++++++++++++++++++++-------------------- po/es.po | 92 ++++++++++++++++++++++-------------------- po/fa.po | 92 ++++++++++++++++++++++-------------------- po/fi.po | 92 ++++++++++++++++++++++-------------------- po/fr.po | 92 ++++++++++++++++++++++-------------------- po/he.po | 92 ++++++++++++++++++++++-------------------- po/hi.po | 92 ++++++++++++++++++++++-------------------- po/id.po | 92 ++++++++++++++++++++++-------------------- po/it.po | 92 ++++++++++++++++++++++-------------------- po/ja.po | 108 +++++++++++++++++++++++++------------------------- po/ka.po | 92 ++++++++++++++++++++++-------------------- po/ko.po | 92 ++++++++++++++++++++++-------------------- po/lxd.pot | 85 +++++++++++++++++++++------------------ po/mr.po | 92 ++++++++++++++++++++++-------------------- po/nb_NO.po | 92 ++++++++++++++++++++++-------------------- po/nl.po | 92 ++++++++++++++++++++++-------------------- po/pa.po | 92 ++++++++++++++++++++++-------------------- po/pl.po | 92 ++++++++++++++++++++++-------------------- po/pt.po | 92 ++++++++++++++++++++++-------------------- po/pt_BR.po | 92 ++++++++++++++++++++++-------------------- po/ru.po | 92 ++++++++++++++++++++++-------------------- po/si.po | 92 ++++++++++++++++++++++-------------------- po/sl.po | 92 ++++++++++++++++++++++-------------------- po/sr.po | 92 ++++++++++++++++++++++-------------------- po/sv.po | 92 ++++++++++++++++++++++-------------------- po/te.po | 92 ++++++++++++++++++++++-------------------- po/th.po | 92 ++++++++++++++++++++++-------------------- po/tr.po | 92 ++++++++++++++++++++++-------------------- po/tzm.po | 92 ++++++++++++++++++++++-------------------- po/ug.po | 92 ++++++++++++++++++++++-------------------- po/uk.po | 92 ++++++++++++++++++++++-------------------- po/zh_Hans.po | 92 ++++++++++++++++++++++-------------------- po/zh_Hant.po | 92 ++++++++++++++++++++++-------------------- 40 files changed, 2001 insertions(+), 1688 deletions(-) diff --git a/po/ar.po b/po/ar.po index f66a817d03d0..1e98e4e8fcb5 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -367,7 +367,7 @@ msgid "" "### Note that only the configuration can be changed." msgstr "" -#: lxc/profile.go:436 +#: lxc/profile.go:456 msgid "" "### This is a YAML representation of the profile.\n" "### Any line starting with a '# will be ignored.\n" @@ -1212,7 +1212,7 @@ msgstr "" #: lxc/config_trust.go:314 lxc/image.go:466 lxc/network.go:686 #: lxc/network_acl.go:620 lxc/network_forward.go:685 #: lxc/network_load_balancer.go:689 lxc/network_peer.go:610 -#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:518 +#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:538 #: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:343 #: lxc/storage_bucket.go:1092 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 @@ -1515,7 +1515,7 @@ msgstr "" #: lxc/network_acl.go:148 lxc/network_forward.go:149 #: lxc/network_load_balancer.go:152 lxc/network_peer.go:140 #: lxc/network_zone.go:139 lxc/network_zone.go:742 lxc/operation.go:172 -#: lxc/profile.go:658 lxc/project.go:505 lxc/storage.go:646 +#: lxc/profile.go:678 lxc/project.go:505 lxc/storage.go:646 #: lxc/storage_bucket.go:507 lxc/storage_bucket.go:827 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" @@ -1613,7 +1613,7 @@ msgstr "" msgid "Delete networks" msgstr "" -#: lxc/profile.go:373 lxc/profile.go:374 +#: lxc/profile.go:393 lxc/profile.go:394 msgid "Delete profiles" msgstr "" @@ -1714,9 +1714,9 @@ msgstr "" #: lxc/network_zone.go:1225 lxc/network_zone.go:1240 lxc/network_zone.go:1286 #: lxc/operation.go:24 lxc/operation.go:56 lxc/operation.go:106 #: lxc/operation.go:193 lxc/profile.go:29 lxc/profile.go:104 lxc/profile.go:167 -#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:374 lxc/profile.go:424 -#: lxc/profile.go:552 lxc/profile.go:613 lxc/profile.go:674 lxc/profile.go:750 -#: lxc/profile.go:802 lxc/profile.go:878 lxc/profile.go:934 lxc/project.go:29 +#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:394 lxc/profile.go:444 +#: lxc/profile.go:572 lxc/profile.go:633 lxc/profile.go:694 lxc/profile.go:770 +#: lxc/profile.go:822 lxc/profile.go:898 lxc/profile.go:954 lxc/project.go:29 #: lxc/project.go:93 lxc/project.go:158 lxc/project.go:221 lxc/project.go:349 #: lxc/project.go:410 lxc/project.go:523 lxc/project.go:580 lxc/project.go:659 #: lxc/project.go:690 lxc/project.go:743 lxc/project.go:802 lxc/publish.go:33 @@ -1975,7 +1975,7 @@ msgstr "" msgid "Edit network zone record configurations as YAML" msgstr "" -#: lxc/profile.go:423 lxc/profile.go:424 +#: lxc/profile.go:443 lxc/profile.go:444 msgid "Edit profile configurations as YAML" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:621 lxc/config.go:653 lxc/network.go:1194 #: lxc/network_acl.go:467 lxc/network_forward.go:519 #: lxc/network_load_balancer.go:522 lxc/network_peer.go:463 -#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:856 +#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:876 #: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:597 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format @@ -2073,7 +2073,7 @@ msgstr "" #: lxc/cluster.go:408 lxc/network.go:1188 lxc/network_acl.go:461 #: lxc/network_forward.go:513 lxc/network_load_balancer.go:516 #: lxc/network_peer.go:457 lxc/network_zone.go:403 lxc/network_zone.go:997 -#: lxc/profile.go:850 lxc/project.go:628 lxc/storage.go:721 +#: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 #: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format @@ -2411,7 +2411,7 @@ msgstr "" #: lxc/network.go:1007 lxc/network_acl.go:97 lxc/network_allocations.go:57 #: lxc/network_forward.go:93 lxc/network_load_balancer.go:97 #: lxc/network_peer.go:84 lxc/network_zone.go:88 lxc/network_zone.go:692 -#: lxc/operation.go:108 lxc/profile.go:617 lxc/project.go:412 +#: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 #: lxc/project.go:804 lxc/remote.go:689 lxc/storage.go:588 #: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 #: lxc/storage_volume.go:1446 lxc/warning.go:93 @@ -2522,7 +2522,7 @@ msgstr "" msgid "Get the key as a network zone record property" msgstr "" -#: lxc/profile.go:557 +#: lxc/profile.go:577 msgid "Get the key as a profile property" msgstr "" @@ -2586,7 +2586,7 @@ msgstr "" msgid "Get values for network zone record configuration keys" msgstr "" -#: lxc/profile.go:551 lxc/profile.go:552 +#: lxc/profile.go:571 lxc/profile.go:572 msgid "Get values for profile configuration keys" msgstr "" @@ -3307,7 +3307,7 @@ msgstr "" msgid "List permissions" msgstr "" -#: lxc/profile.go:612 lxc/profile.go:613 +#: lxc/profile.go:632 lxc/profile.go:633 msgid "List profiles" msgstr "" @@ -3772,7 +3772,7 @@ msgstr "" #: lxc/config_template.go:91 lxc/config_template.go:134 #: lxc/config_template.go:176 lxc/config_template.go:265 #: lxc/config_template.go:324 lxc/profile.go:128 lxc/profile.go:201 -#: lxc/profile.go:698 lxc/rebuild.go:60 +#: lxc/profile.go:718 lxc/rebuild.go:60 msgid "Missing instance name" msgstr "" @@ -3858,8 +3858,8 @@ msgstr "" msgid "Missing pool name" msgstr "" -#: lxc/profile.go:344 lxc/profile.go:398 lxc/profile.go:472 lxc/profile.go:577 -#: lxc/profile.go:774 lxc/profile.go:829 lxc/profile.go:902 +#: lxc/profile.go:363 lxc/profile.go:418 lxc/profile.go:492 lxc/profile.go:597 +#: lxc/profile.go:794 lxc/profile.go:849 lxc/profile.go:922 msgid "Missing profile name" msgstr "" @@ -3988,7 +3988,7 @@ msgstr "" #: lxc/cluster.go:964 lxc/cluster_group.go:437 lxc/config_trust.go:409 #: lxc/config_trust.go:514 lxc/list.go:564 lxc/network.go:980 #: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:138 -#: lxc/network_zone.go:741 lxc/profile.go:657 lxc/project.go:498 +#: lxc/network_zone.go:741 lxc/profile.go:677 lxc/project.go:498 #: lxc/remote.go:747 lxc/storage.go:638 lxc/storage_bucket.go:506 #: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 msgid "NAME" @@ -4384,7 +4384,7 @@ msgstr "" #: lxc/config_trust.go:315 lxc/image.go:467 lxc/network.go:687 #: lxc/network_acl.go:621 lxc/network_forward.go:686 #: lxc/network_load_balancer.go:690 lxc/network_peer.go:611 -#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:519 +#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:539 #: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:344 #: lxc/storage_bucket.go:1093 lxc/storage_volume.go:1017 #: lxc/storage_volume.go:1049 @@ -4427,27 +4427,27 @@ msgstr "" msgid "Profile %s added to %s" msgstr "" -#: lxc/profile.go:357 +#: lxc/profile.go:377 #, c-format msgid "Profile %s created" msgstr "" -#: lxc/profile.go:408 +#: lxc/profile.go:428 #, c-format msgid "Profile %s deleted" msgstr "" -#: lxc/profile.go:708 +#: lxc/profile.go:728 #, c-format msgid "Profile %s isn't currently applied to %s" msgstr "" -#: lxc/profile.go:733 +#: lxc/profile.go:753 #, c-format msgid "Profile %s removed from %s" msgstr "" -#: lxc/profile.go:784 +#: lxc/profile.go:804 #, c-format msgid "Profile %s renamed to %s" msgstr "" @@ -4797,7 +4797,7 @@ msgstr "" msgid "Remove ports from a load balancer" msgstr "" -#: lxc/profile.go:673 lxc/profile.go:674 +#: lxc/profile.go:693 lxc/profile.go:694 msgid "Remove profiles from instances" msgstr "" @@ -4850,7 +4850,7 @@ msgstr "" msgid "Rename networks" msgstr "" -#: lxc/profile.go:749 lxc/profile.go:750 +#: lxc/profile.go:769 lxc/profile.go:770 msgid "Rename profiles" msgstr "" @@ -5194,11 +5194,11 @@ msgstr "" msgid "Set network zone record configuration keys" msgstr "" -#: lxc/profile.go:801 +#: lxc/profile.go:821 msgid "Set profile configuration keys" msgstr "" -#: lxc/profile.go:802 +#: lxc/profile.go:822 msgid "" "Set profile configuration keys\n" "\n" @@ -5307,7 +5307,7 @@ msgstr "" msgid "Set the key as a network zone record property" msgstr "" -#: lxc/profile.go:809 +#: lxc/profile.go:829 msgid "Set the key as a profile property" msgstr "" @@ -5452,7 +5452,7 @@ msgstr "" msgid "Show network zone record configurations" msgstr "" -#: lxc/profile.go:877 lxc/profile.go:878 +#: lxc/profile.go:897 lxc/profile.go:898 msgid "Show profile configurations" msgstr "" @@ -5852,7 +5852,7 @@ msgstr "" msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" -#: lxc/profile.go:590 +#: lxc/profile.go:610 #, c-format msgid "The property %q does not exist on the profile %q: %v" msgstr "" @@ -6064,7 +6064,7 @@ msgid "USAGE" msgstr "" #: lxc/network.go:986 lxc/network_acl.go:149 lxc/network_allocations.go:24 -#: lxc/network_zone.go:140 lxc/profile.go:659 lxc/project.go:506 +#: lxc/network_zone.go:140 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6187,7 +6187,7 @@ msgstr "" msgid "Unset network zone record configuration keys" msgstr "" -#: lxc/profile.go:933 lxc/profile.go:934 +#: lxc/profile.go:953 lxc/profile.go:954 msgid "Unset profile configuration keys" msgstr "" @@ -6239,7 +6239,7 @@ msgstr "" msgid "Unset the key as a network zone record property" msgstr "" -#: lxc/profile.go:938 +#: lxc/profile.go:958 msgid "Unset the key as a profile property" msgstr "" @@ -6442,7 +6442,7 @@ msgstr "" #: lxc/cluster.go:119 lxc/cluster.go:878 lxc/cluster_group.go:379 #: lxc/config_trust.go:347 lxc/config_trust.go:430 lxc/monitor.go:31 #: lxc/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:82 -#: lxc/operation.go:103 lxc/profile.go:610 lxc/project.go:407 +#: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 msgid "[:]" msgstr "" @@ -6646,7 +6646,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6950,7 +6950,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6966,11 +6966,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6978,7 +6978,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7341,6 +7341,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7352,7 +7360,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/ber.po b/po/ber.po index 86092f64c6fa..54c3c628faba 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Berber :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/bg.po b/po/bg.po index 31f717a72f32..182bda3b7939 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/ca.po b/po/ca.po index 881967b31d0a..70dc8c7bb50e 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/cs.po b/po/cs.po index fa2001c33d5d..961a9b7a09c7 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/de.po b/po/de.po index 7e08930cd882..b2663dec92a9 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Krombel \n" "Language-Team: German :]" @@ -7543,7 +7543,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 #, fuzzy msgid "[:] " msgstr "" @@ -8147,7 +8147,7 @@ msgstr "" "lxd %s \n" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 #, fuzzy msgid "[:]" msgstr "" @@ -8179,7 +8179,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 #, fuzzy msgid "[:] " msgstr "" @@ -8187,7 +8187,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/profile.go:800 +#: lxc/profile.go:820 #, fuzzy msgid "[:] ..." msgstr "" @@ -8203,7 +8203,7 @@ msgstr "" "\n" "lxd %s \n" -#: lxc/profile.go:747 +#: lxc/profile.go:767 #, fuzzy msgid "[:] " msgstr "" @@ -8659,6 +8659,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -8670,7 +8678,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/el.po b/po/el.po index 4de063ec7b4e..32cb483c1887 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Greek :]" msgstr "" @@ -6762,7 +6762,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -7066,7 +7066,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -7082,11 +7082,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -7094,7 +7094,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7457,6 +7457,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7468,7 +7476,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/eo.po b/po/eo.po index 99c78214843c..caae633f91fa 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/es.po b/po/es.po index 7a9c5449592c..96704fd55943 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2023-06-16 20:55+0000\n" "Last-Translator: Francisco Serrador \n" "Language-Team: Spanish :]" @@ -7131,7 +7131,7 @@ msgstr "No se puede proveer el nombre del container a la lista" msgid "[:] ..." msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" @@ -7503,7 +7503,7 @@ msgid "[:]/[/] [:]/" msgstr "No se puede proveer el nombre del container a la lista" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 #, fuzzy msgid "[:]" msgstr "No se puede proveer el nombre del container a la lista" @@ -7523,12 +7523,12 @@ msgstr "No se puede proveer el nombre del container a la lista" msgid "[:] [key=value...]" msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/profile.go:800 +#: lxc/profile.go:820 #, fuzzy msgid "[:] ..." msgstr "No se puede proveer el nombre del container a la lista" @@ -7538,7 +7538,7 @@ msgstr "No se puede proveer el nombre del container a la lista" msgid "[:] ..." msgstr "No se puede proveer el nombre del container a la lista" -#: lxc/profile.go:747 +#: lxc/profile.go:767 #, fuzzy msgid "[:] " msgstr "No se puede proveer el nombre del container a la lista" @@ -7922,6 +7922,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7933,7 +7941,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/fa.po b/po/fa.po index 1f03c2c150cc..55f58b306a5d 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Persian :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/fi.po b/po/fi.po index e5729d2aa166..c576dbde0eb6 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/fr.po b/po/fr.po index 68323be4568e..1365a94bc178 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Wivik \n" "Language-Team: French :]" @@ -7715,7 +7715,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 #, fuzzy msgid "[:] " msgstr "" @@ -8388,7 +8388,7 @@ msgstr "" "lxc %s [:] [[:]...]%s" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 #, fuzzy msgid "[:]" msgstr "" @@ -8420,7 +8420,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 #, fuzzy msgid "[:] " msgstr "" @@ -8428,7 +8428,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:800 +#: lxc/profile.go:820 #, fuzzy msgid "[:] ..." msgstr "" @@ -8444,7 +8444,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:747 +#: lxc/profile.go:767 #, fuzzy msgid "[:] " msgstr "" @@ -8934,6 +8934,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -8945,7 +8953,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/he.po b/po/he.po index 1473d2b6cda7..8636b231d0c5 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hebrew :]" msgstr "" @@ -6650,7 +6650,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6954,7 +6954,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6970,11 +6970,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6982,7 +6982,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7345,6 +7345,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7356,7 +7364,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/hi.po b/po/hi.po index e38b71095686..dad463035e49 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hindi :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/id.po b/po/id.po index 8dc6c00ab478..e0f5aa146272 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Indonesian :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/it.po b/po/it.po index d395388432b9..28a40fcb2e6a 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Luigi Operoso \n" "Language-Team: Italian :]" @@ -7128,7 +7128,7 @@ msgstr "Creazione del container in corso" msgid "[:] ..." msgstr "Creazione del container in corso" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" @@ -7500,7 +7500,7 @@ msgid "[:]/[/] [:]/" msgstr "Creazione del container in corso" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 #, fuzzy msgid "[:]" msgstr "Creazione del container in corso" @@ -7520,12 +7520,12 @@ msgstr "Creazione del container in corso" msgid "[:] [key=value...]" msgstr "Creazione del container in corso" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" -#: lxc/profile.go:800 +#: lxc/profile.go:820 #, fuzzy msgid "[:] ..." msgstr "Creazione del container in corso" @@ -7535,7 +7535,7 @@ msgstr "Creazione del container in corso" msgid "[:] ..." msgstr "Creazione del container in corso" -#: lxc/profile.go:747 +#: lxc/profile.go:767 #, fuzzy msgid "[:] " msgstr "Creazione del container in corso" @@ -7919,6 +7919,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7930,7 +7938,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/ja.po b/po/ja.po index 948d61501544..ce53a476c786 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2023-03-10 15:14+0000\n" "Last-Translator: KATOH Yasufumi \n" "Language-Team: Japanese ] [] []" #: lxc/cluster.go:119 lxc/cluster.go:878 lxc/cluster_group.go:379 #: lxc/config_trust.go:347 lxc/config_trust.go:430 lxc/monitor.go:31 #: lxc/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:82 -#: lxc/operation.go:103 lxc/profile.go:610 lxc/project.go:407 +#: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 msgid "[:]" msgstr "[:]" @@ -7376,7 +7376,7 @@ msgstr "[:][] =..." msgid "[:] ..." msgstr "[:] ..." -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "[:] " @@ -7699,7 +7699,7 @@ msgid "[:]/[/] [:]/" msgstr "[:]/[/] [:]/" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "[:]" @@ -7715,11 +7715,11 @@ msgstr "[:] =..." msgid "[:] [key=value...]" msgstr "[:] [key=value...]" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "[:] " -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "[:] ..." @@ -7727,7 +7727,7 @@ msgstr "[:] ..." msgid "[:] ..." msgstr "[:] ..." -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "[:] " @@ -8216,6 +8216,19 @@ msgstr "" "lxc profile assign foo ''\n" " \"foo\" からすべてのプロファイルを削除します。" +#: lxc/profile.go:322 +#, fuzzy +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" +"lxc init ubuntu:22.04 u1\n" +"\n" +"lxc init ubuntu:22.04 u1 < config.yaml\n" +" config.yaml の設定を使ってインスタンスを作成します" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -8235,7 +8248,7 @@ msgstr "" " some-pool 上の some-volume ボリュームをインスタンスの /opt にマウントしま" "す。" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" @@ -8392,17 +8405,6 @@ msgstr "y" msgid "yes" msgstr "yes" -#~ msgid "" -#~ "lxc init ubuntu:22.04 u1\n" -#~ "\n" -#~ "lxc init ubuntu:22.04 u1 < config.yaml\n" -#~ " Create the instance with configuration from config.yaml" -#~ msgstr "" -#~ "lxc init ubuntu:22.04 u1\n" -#~ "\n" -#~ "lxc init ubuntu:22.04 u1 < config.yaml\n" -#~ " config.yaml の設定を使ってインスタンスを作成します" - #, c-format #~ msgid "" #~ "Cannot override config for device %q: Device not found in profile devices" diff --git a/po/ka.po b/po/ka.po index 941fd1e5d885..444a25fc6e88 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -367,7 +367,7 @@ msgid "" "### Note that only the configuration can be changed." msgstr "" -#: lxc/profile.go:436 +#: lxc/profile.go:456 msgid "" "### This is a YAML representation of the profile.\n" "### Any line starting with a '# will be ignored.\n" @@ -1212,7 +1212,7 @@ msgstr "" #: lxc/config_trust.go:314 lxc/image.go:466 lxc/network.go:686 #: lxc/network_acl.go:620 lxc/network_forward.go:685 #: lxc/network_load_balancer.go:689 lxc/network_peer.go:610 -#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:518 +#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:538 #: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:343 #: lxc/storage_bucket.go:1092 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 @@ -1515,7 +1515,7 @@ msgstr "" #: lxc/network_acl.go:148 lxc/network_forward.go:149 #: lxc/network_load_balancer.go:152 lxc/network_peer.go:140 #: lxc/network_zone.go:139 lxc/network_zone.go:742 lxc/operation.go:172 -#: lxc/profile.go:658 lxc/project.go:505 lxc/storage.go:646 +#: lxc/profile.go:678 lxc/project.go:505 lxc/storage.go:646 #: lxc/storage_bucket.go:507 lxc/storage_bucket.go:827 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" @@ -1613,7 +1613,7 @@ msgstr "" msgid "Delete networks" msgstr "" -#: lxc/profile.go:373 lxc/profile.go:374 +#: lxc/profile.go:393 lxc/profile.go:394 msgid "Delete profiles" msgstr "" @@ -1714,9 +1714,9 @@ msgstr "" #: lxc/network_zone.go:1225 lxc/network_zone.go:1240 lxc/network_zone.go:1286 #: lxc/operation.go:24 lxc/operation.go:56 lxc/operation.go:106 #: lxc/operation.go:193 lxc/profile.go:29 lxc/profile.go:104 lxc/profile.go:167 -#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:374 lxc/profile.go:424 -#: lxc/profile.go:552 lxc/profile.go:613 lxc/profile.go:674 lxc/profile.go:750 -#: lxc/profile.go:802 lxc/profile.go:878 lxc/profile.go:934 lxc/project.go:29 +#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:394 lxc/profile.go:444 +#: lxc/profile.go:572 lxc/profile.go:633 lxc/profile.go:694 lxc/profile.go:770 +#: lxc/profile.go:822 lxc/profile.go:898 lxc/profile.go:954 lxc/project.go:29 #: lxc/project.go:93 lxc/project.go:158 lxc/project.go:221 lxc/project.go:349 #: lxc/project.go:410 lxc/project.go:523 lxc/project.go:580 lxc/project.go:659 #: lxc/project.go:690 lxc/project.go:743 lxc/project.go:802 lxc/publish.go:33 @@ -1975,7 +1975,7 @@ msgstr "" msgid "Edit network zone record configurations as YAML" msgstr "" -#: lxc/profile.go:423 lxc/profile.go:424 +#: lxc/profile.go:443 lxc/profile.go:444 msgid "Edit profile configurations as YAML" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:621 lxc/config.go:653 lxc/network.go:1194 #: lxc/network_acl.go:467 lxc/network_forward.go:519 #: lxc/network_load_balancer.go:522 lxc/network_peer.go:463 -#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:856 +#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:876 #: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:597 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format @@ -2073,7 +2073,7 @@ msgstr "" #: lxc/cluster.go:408 lxc/network.go:1188 lxc/network_acl.go:461 #: lxc/network_forward.go:513 lxc/network_load_balancer.go:516 #: lxc/network_peer.go:457 lxc/network_zone.go:403 lxc/network_zone.go:997 -#: lxc/profile.go:850 lxc/project.go:628 lxc/storage.go:721 +#: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 #: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format @@ -2411,7 +2411,7 @@ msgstr "" #: lxc/network.go:1007 lxc/network_acl.go:97 lxc/network_allocations.go:57 #: lxc/network_forward.go:93 lxc/network_load_balancer.go:97 #: lxc/network_peer.go:84 lxc/network_zone.go:88 lxc/network_zone.go:692 -#: lxc/operation.go:108 lxc/profile.go:617 lxc/project.go:412 +#: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 #: lxc/project.go:804 lxc/remote.go:689 lxc/storage.go:588 #: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 #: lxc/storage_volume.go:1446 lxc/warning.go:93 @@ -2522,7 +2522,7 @@ msgstr "" msgid "Get the key as a network zone record property" msgstr "" -#: lxc/profile.go:557 +#: lxc/profile.go:577 msgid "Get the key as a profile property" msgstr "" @@ -2586,7 +2586,7 @@ msgstr "" msgid "Get values for network zone record configuration keys" msgstr "" -#: lxc/profile.go:551 lxc/profile.go:552 +#: lxc/profile.go:571 lxc/profile.go:572 msgid "Get values for profile configuration keys" msgstr "" @@ -3307,7 +3307,7 @@ msgstr "" msgid "List permissions" msgstr "" -#: lxc/profile.go:612 lxc/profile.go:613 +#: lxc/profile.go:632 lxc/profile.go:633 msgid "List profiles" msgstr "" @@ -3772,7 +3772,7 @@ msgstr "" #: lxc/config_template.go:91 lxc/config_template.go:134 #: lxc/config_template.go:176 lxc/config_template.go:265 #: lxc/config_template.go:324 lxc/profile.go:128 lxc/profile.go:201 -#: lxc/profile.go:698 lxc/rebuild.go:60 +#: lxc/profile.go:718 lxc/rebuild.go:60 msgid "Missing instance name" msgstr "" @@ -3858,8 +3858,8 @@ msgstr "" msgid "Missing pool name" msgstr "" -#: lxc/profile.go:344 lxc/profile.go:398 lxc/profile.go:472 lxc/profile.go:577 -#: lxc/profile.go:774 lxc/profile.go:829 lxc/profile.go:902 +#: lxc/profile.go:363 lxc/profile.go:418 lxc/profile.go:492 lxc/profile.go:597 +#: lxc/profile.go:794 lxc/profile.go:849 lxc/profile.go:922 msgid "Missing profile name" msgstr "" @@ -3988,7 +3988,7 @@ msgstr "" #: lxc/cluster.go:964 lxc/cluster_group.go:437 lxc/config_trust.go:409 #: lxc/config_trust.go:514 lxc/list.go:564 lxc/network.go:980 #: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:138 -#: lxc/network_zone.go:741 lxc/profile.go:657 lxc/project.go:498 +#: lxc/network_zone.go:741 lxc/profile.go:677 lxc/project.go:498 #: lxc/remote.go:747 lxc/storage.go:638 lxc/storage_bucket.go:506 #: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 msgid "NAME" @@ -4384,7 +4384,7 @@ msgstr "" #: lxc/config_trust.go:315 lxc/image.go:467 lxc/network.go:687 #: lxc/network_acl.go:621 lxc/network_forward.go:686 #: lxc/network_load_balancer.go:690 lxc/network_peer.go:611 -#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:519 +#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:539 #: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:344 #: lxc/storage_bucket.go:1093 lxc/storage_volume.go:1017 #: lxc/storage_volume.go:1049 @@ -4427,27 +4427,27 @@ msgstr "" msgid "Profile %s added to %s" msgstr "" -#: lxc/profile.go:357 +#: lxc/profile.go:377 #, c-format msgid "Profile %s created" msgstr "" -#: lxc/profile.go:408 +#: lxc/profile.go:428 #, c-format msgid "Profile %s deleted" msgstr "" -#: lxc/profile.go:708 +#: lxc/profile.go:728 #, c-format msgid "Profile %s isn't currently applied to %s" msgstr "" -#: lxc/profile.go:733 +#: lxc/profile.go:753 #, c-format msgid "Profile %s removed from %s" msgstr "" -#: lxc/profile.go:784 +#: lxc/profile.go:804 #, c-format msgid "Profile %s renamed to %s" msgstr "" @@ -4797,7 +4797,7 @@ msgstr "" msgid "Remove ports from a load balancer" msgstr "" -#: lxc/profile.go:673 lxc/profile.go:674 +#: lxc/profile.go:693 lxc/profile.go:694 msgid "Remove profiles from instances" msgstr "" @@ -4850,7 +4850,7 @@ msgstr "" msgid "Rename networks" msgstr "" -#: lxc/profile.go:749 lxc/profile.go:750 +#: lxc/profile.go:769 lxc/profile.go:770 msgid "Rename profiles" msgstr "" @@ -5194,11 +5194,11 @@ msgstr "" msgid "Set network zone record configuration keys" msgstr "" -#: lxc/profile.go:801 +#: lxc/profile.go:821 msgid "Set profile configuration keys" msgstr "" -#: lxc/profile.go:802 +#: lxc/profile.go:822 msgid "" "Set profile configuration keys\n" "\n" @@ -5307,7 +5307,7 @@ msgstr "" msgid "Set the key as a network zone record property" msgstr "" -#: lxc/profile.go:809 +#: lxc/profile.go:829 msgid "Set the key as a profile property" msgstr "" @@ -5452,7 +5452,7 @@ msgstr "" msgid "Show network zone record configurations" msgstr "" -#: lxc/profile.go:877 lxc/profile.go:878 +#: lxc/profile.go:897 lxc/profile.go:898 msgid "Show profile configurations" msgstr "" @@ -5852,7 +5852,7 @@ msgstr "" msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" -#: lxc/profile.go:590 +#: lxc/profile.go:610 #, c-format msgid "The property %q does not exist on the profile %q: %v" msgstr "" @@ -6064,7 +6064,7 @@ msgid "USAGE" msgstr "" #: lxc/network.go:986 lxc/network_acl.go:149 lxc/network_allocations.go:24 -#: lxc/network_zone.go:140 lxc/profile.go:659 lxc/project.go:506 +#: lxc/network_zone.go:140 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6187,7 +6187,7 @@ msgstr "" msgid "Unset network zone record configuration keys" msgstr "" -#: lxc/profile.go:933 lxc/profile.go:934 +#: lxc/profile.go:953 lxc/profile.go:954 msgid "Unset profile configuration keys" msgstr "" @@ -6239,7 +6239,7 @@ msgstr "" msgid "Unset the key as a network zone record property" msgstr "" -#: lxc/profile.go:938 +#: lxc/profile.go:958 msgid "Unset the key as a profile property" msgstr "" @@ -6442,7 +6442,7 @@ msgstr "" #: lxc/cluster.go:119 lxc/cluster.go:878 lxc/cluster_group.go:379 #: lxc/config_trust.go:347 lxc/config_trust.go:430 lxc/monitor.go:31 #: lxc/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:82 -#: lxc/operation.go:103 lxc/profile.go:610 lxc/project.go:407 +#: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 msgid "[:]" msgstr "" @@ -6646,7 +6646,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6950,7 +6950,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6966,11 +6966,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6978,7 +6978,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7341,6 +7341,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7352,7 +7360,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/ko.po b/po/ko.po index 43c6f18db578..253977d6c083 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Korean :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/lxd.pot b/po/lxd.pot index 0de81303328a..fbda836b11e9 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-07-24 14:26-0700\n" + "POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -341,7 +341,7 @@ msgid "### This is a YAML representation of the network.\n" "### Note that only the configuration can be changed." msgstr "" -#: lxc/profile.go:436 +#: lxc/profile.go:456 msgid "### This is a YAML representation of the profile.\n" "### Any line starting with a '# will be ignored.\n" "###\n" @@ -1136,7 +1136,7 @@ msgstr "" msgid "Config key/value to apply to the target instance" msgstr "" -#: lxc/cluster.go:770 lxc/cluster_group.go:339 lxc/config.go:272 lxc/config.go:347 lxc/config.go:1274 lxc/config_metadata.go:147 lxc/config_trust.go:314 lxc/image.go:466 lxc/network.go:686 lxc/network_acl.go:620 lxc/network_forward.go:685 lxc/network_load_balancer.go:689 lxc/network_peer.go:610 lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:518 lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:343 lxc/storage_bucket.go:1092 lxc/storage_volume.go:1016 lxc/storage_volume.go:1048 +#: lxc/cluster.go:770 lxc/cluster_group.go:339 lxc/config.go:272 lxc/config.go:347 lxc/config.go:1274 lxc/config_metadata.go:147 lxc/config_trust.go:314 lxc/image.go:466 lxc/network.go:686 lxc/network_acl.go:620 lxc/network_forward.go:685 lxc/network_load_balancer.go:689 lxc/network_peer.go:610 lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:538 lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:343 lxc/storage_bucket.go:1092 lxc/storage_volume.go:1016 lxc/storage_volume.go:1048 #, c-format msgid "Config parsing error: %s" msgstr "" @@ -1423,7 +1423,7 @@ msgstr "" msgid "DEFAULT TARGET ADDRESS" msgstr "" -#: lxc/auth.go:376 lxc/cluster.go:188 lxc/cluster_group.go:438 lxc/image.go:1074 lxc/image_alias.go:237 lxc/list.go:556 lxc/network.go:985 lxc/network_acl.go:148 lxc/network_forward.go:149 lxc/network_load_balancer.go:152 lxc/network_peer.go:140 lxc/network_zone.go:139 lxc/network_zone.go:742 lxc/operation.go:172 lxc/profile.go:658 lxc/project.go:505 lxc/storage.go:646 lxc/storage_bucket.go:507 lxc/storage_bucket.go:827 lxc/storage_volume.go:1562 +#: lxc/auth.go:376 lxc/cluster.go:188 lxc/cluster_group.go:438 lxc/image.go:1074 lxc/image_alias.go:237 lxc/list.go:556 lxc/network.go:985 lxc/network_acl.go:148 lxc/network_forward.go:149 lxc/network_load_balancer.go:152 lxc/network_peer.go:140 lxc/network_zone.go:139 lxc/network_zone.go:742 lxc/operation.go:172 lxc/profile.go:678 lxc/project.go:505 lxc/storage.go:646 lxc/storage_bucket.go:507 lxc/storage_bucket.go:827 lxc/storage_volume.go:1562 msgid "DESCRIPTION" msgstr "" @@ -1519,7 +1519,7 @@ msgstr "" msgid "Delete networks" msgstr "" -#: lxc/profile.go:373 lxc/profile.go:374 +#: lxc/profile.go:393 lxc/profile.go:394 msgid "Delete profiles" msgstr "" @@ -1543,7 +1543,7 @@ msgstr "" msgid "Delete warning" msgstr "" -#: lxc/action.go:32 lxc/action.go:53 lxc/action.go:75 lxc/action.go:98 lxc/alias.go:23 lxc/alias.go:60 lxc/alias.go:110 lxc/alias.go:159 lxc/alias.go:214 lxc/auth.go:30 lxc/auth.go:59 lxc/auth.go:98 lxc/auth.go:152 lxc/auth.go:201 lxc/auth.go:332 lxc/auth.go:392 lxc/auth.go:441 lxc/auth.go:493 lxc/auth.go:516 lxc/auth.go:575 lxc/auth.go:731 lxc/auth.go:765 lxc/auth.go:832 lxc/auth.go:895 lxc/auth.go:956 lxc/auth.go:1084 lxc/auth.go:1107 lxc/auth.go:1165 lxc/auth.go:1234 lxc/auth.go:1256 lxc/auth.go:1434 lxc/auth.go:1472 lxc/auth.go:1524 lxc/auth.go:1573 lxc/auth.go:1692 lxc/auth.go:1752 lxc/auth.go:1801 lxc/auth.go:1852 lxc/auth.go:1875 lxc/auth.go:1928 lxc/cluster.go:29 lxc/cluster.go:122 lxc/cluster.go:206 lxc/cluster.go:255 lxc/cluster.go:306 lxc/cluster.go:367 lxc/cluster.go:439 lxc/cluster.go:471 lxc/cluster.go:521 lxc/cluster.go:604 lxc/cluster.go:689 lxc/cluster.go:804 lxc/cluster.go:880 lxc/cluster.go:982 lxc/cluster.go:1061 lxc/cluster.go:1168 lxc/cluster.go:1190 lxc/cluster_group.go:30 lxc/cluster_group.go:84 lxc/cluster_group.go:157 lxc/cluster_group.go:214 lxc/cluster_group.go:266 lxc/cluster_group.go:382 lxc/cluster_group.go:456 lxc/cluster_group.go:529 lxc/cluster_group.go:577 lxc/cluster_group.go:631 lxc/cluster_role.go:23 lxc/cluster_role.go:50 lxc/cluster_role.go:106 lxc/config.go:32 lxc/config.go:99 lxc/config.go:384 lxc/config.go:517 lxc/config.go:731 lxc/config.go:855 lxc/config.go:890 lxc/config.go:930 lxc/config.go:985 lxc/config.go:1076 lxc/config.go:1107 lxc/config.go:1161 lxc/config_device.go:24 lxc/config_device.go:78 lxc/config_device.go:208 lxc/config_device.go:285 lxc/config_device.go:356 lxc/config_device.go:450 lxc/config_device.go:548 lxc/config_device.go:555 lxc/config_device.go:668 lxc/config_device.go:741 lxc/config_metadata.go:27 lxc/config_metadata.go:55 lxc/config_metadata.go:180 lxc/config_template.go:27 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:240 lxc/config_template.go:300 lxc/config_trust.go:34 lxc/config_trust.go:87 lxc/config_trust.go:236 lxc/config_trust.go:350 lxc/config_trust.go:432 lxc/config_trust.go:534 lxc/config_trust.go:580 lxc/config_trust.go:651 lxc/console.go:37 lxc/copy.go:41 lxc/delete.go:31 lxc/exec.go:41 lxc/export.go:32 lxc/file.go:83 lxc/file.go:123 lxc/file.go:172 lxc/file.go:242 lxc/file.go:467 lxc/file.go:986 lxc/image.go:37 lxc/image.go:158 lxc/image.go:324 lxc/image.go:379 lxc/image.go:500 lxc/image.go:664 lxc/image.go:901 lxc/image.go:1035 lxc/image.go:1354 lxc/image.go:1441 lxc/image.go:1499 lxc/image.go:1550 lxc/image.go:1605 lxc/image_alias.go:24 lxc/image_alias.go:60 lxc/image_alias.go:107 lxc/image_alias.go:152 lxc/image_alias.go:255 lxc/import.go:29 lxc/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:82 lxc/manpage.go:22 lxc/monitor.go:33 lxc/move.go:37 lxc/network.go:32 lxc/network.go:135 lxc/network.go:220 lxc/network.go:293 lxc/network.go:372 lxc/network.go:422 lxc/network.go:507 lxc/network.go:592 lxc/network.go:720 lxc/network.go:789 lxc/network.go:912 lxc/network.go:1005 lxc/network.go:1076 lxc/network.go:1128 lxc/network.go:1216 lxc/network.go:1280 lxc/network_acl.go:29 lxc/network_acl.go:94 lxc/network_acl.go:165 lxc/network_acl.go:218 lxc/network_acl.go:266 lxc/network_acl.go:327 lxc/network_acl.go:412 lxc/network_acl.go:492 lxc/network_acl.go:522 lxc/network_acl.go:653 lxc/network_acl.go:702 lxc/network_acl.go:751 lxc/network_acl.go:766 lxc/network_acl.go:887 lxc/network_allocations.go:51 lxc/network_forward.go:33 lxc/network_forward.go:90 lxc/network_forward.go:171 lxc/network_forward.go:236 lxc/network_forward.go:379 lxc/network_forward.go:448 lxc/network_forward.go:546 lxc/network_forward.go:576 lxc/network_forward.go:718 lxc/network_forward.go:780 lxc/network_forward.go:795 lxc/network_forward.go:860 lxc/network_load_balancer.go:33 lxc/network_load_balancer.go:94 lxc/network_load_balancer.go:173 lxc/network_load_balancer.go:238 lxc/network_load_balancer.go:383 lxc/network_load_balancer.go:451 lxc/network_load_balancer.go:549 lxc/network_load_balancer.go:579 lxc/network_load_balancer.go:722 lxc/network_load_balancer.go:783 lxc/network_load_balancer.go:798 lxc/network_load_balancer.go:862 lxc/network_load_balancer.go:948 lxc/network_load_balancer.go:963 lxc/network_load_balancer.go:1024 lxc/network_peer.go:28 lxc/network_peer.go:81 lxc/network_peer.go:158 lxc/network_peer.go:215 lxc/network_peer.go:331 lxc/network_peer.go:399 lxc/network_peer.go:488 lxc/network_peer.go:518 lxc/network_peer.go:643 lxc/network_zone.go:28 lxc/network_zone.go:85 lxc/network_zone.go:156 lxc/network_zone.go:211 lxc/network_zone.go:271 lxc/network_zone.go:354 lxc/network_zone.go:434 lxc/network_zone.go:465 lxc/network_zone.go:584 lxc/network_zone.go:632 lxc/network_zone.go:689 lxc/network_zone.go:759 lxc/network_zone.go:811 lxc/network_zone.go:870 lxc/network_zone.go:952 lxc/network_zone.go:1028 lxc/network_zone.go:1058 lxc/network_zone.go:1176 lxc/network_zone.go:1225 lxc/network_zone.go:1240 lxc/network_zone.go:1286 lxc/operation.go:24 lxc/operation.go:56 lxc/operation.go:106 lxc/operation.go:193 lxc/profile.go:29 lxc/profile.go:104 lxc/profile.go:167 lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:374 lxc/profile.go:424 lxc/profile.go:552 lxc/profile.go:613 lxc/profile.go:674 lxc/profile.go:750 lxc/profile.go:802 lxc/profile.go:878 lxc/profile.go:934 lxc/project.go:29 lxc/project.go:93 lxc/project.go:158 lxc/project.go:221 lxc/project.go:349 lxc/project.go:410 lxc/project.go:523 lxc/project.go:580 lxc/project.go:659 lxc/project.go:690 lxc/project.go:743 lxc/project.go:802 lxc/publish.go:33 lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:34 lxc/remote.go:90 lxc/remote.go:647 lxc/remote.go:685 lxc/remote.go:771 lxc/remote.go:844 lxc/remote.go:900 lxc/remote.go:940 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:28 lxc/storage.go:33 lxc/storage.go:96 lxc/storage.go:170 lxc/storage.go:220 lxc/storage.go:344 lxc/storage.go:414 lxc/storage.go:586 lxc/storage.go:665 lxc/storage.go:761 lxc/storage.go:847 lxc/storage_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:183 lxc/storage_bucket.go:244 lxc/storage_bucket.go:377 lxc/storage_bucket.go:453 lxc/storage_bucket.go:530 lxc/storage_bucket.go:624 lxc/storage_bucket.go:693 lxc/storage_bucket.go:727 lxc/storage_bucket.go:768 lxc/storage_bucket.go:847 lxc/storage_bucket.go:925 lxc/storage_bucket.go:989 lxc/storage_bucket.go:1124 lxc/storage_volume.go:43 lxc/storage_volume.go:165 lxc/storage_volume.go:263 lxc/storage_volume.go:354 lxc/storage_volume.go:557 lxc/storage_volume.go:636 lxc/storage_volume.go:711 lxc/storage_volume.go:793 lxc/storage_volume.go:874 lxc/storage_volume.go:1083 lxc/storage_volume.go:1198 lxc/storage_volume.go:1345 lxc/storage_volume.go:1429 lxc/storage_volume.go:1674 lxc/storage_volume.go:1755 lxc/storage_volume.go:1870 lxc/storage_volume.go:2014 lxc/storage_volume.go:2123 lxc/storage_volume.go:2169 lxc/storage_volume.go:2266 lxc/storage_volume.go:2333 lxc/storage_volume.go:2487 lxc/version.go:22 lxc/warning.go:29 lxc/warning.go:71 lxc/warning.go:262 lxc/warning.go:303 lxc/warning.go:357 +#: lxc/action.go:32 lxc/action.go:53 lxc/action.go:75 lxc/action.go:98 lxc/alias.go:23 lxc/alias.go:60 lxc/alias.go:110 lxc/alias.go:159 lxc/alias.go:214 lxc/auth.go:30 lxc/auth.go:59 lxc/auth.go:98 lxc/auth.go:152 lxc/auth.go:201 lxc/auth.go:332 lxc/auth.go:392 lxc/auth.go:441 lxc/auth.go:493 lxc/auth.go:516 lxc/auth.go:575 lxc/auth.go:731 lxc/auth.go:765 lxc/auth.go:832 lxc/auth.go:895 lxc/auth.go:956 lxc/auth.go:1084 lxc/auth.go:1107 lxc/auth.go:1165 lxc/auth.go:1234 lxc/auth.go:1256 lxc/auth.go:1434 lxc/auth.go:1472 lxc/auth.go:1524 lxc/auth.go:1573 lxc/auth.go:1692 lxc/auth.go:1752 lxc/auth.go:1801 lxc/auth.go:1852 lxc/auth.go:1875 lxc/auth.go:1928 lxc/cluster.go:29 lxc/cluster.go:122 lxc/cluster.go:206 lxc/cluster.go:255 lxc/cluster.go:306 lxc/cluster.go:367 lxc/cluster.go:439 lxc/cluster.go:471 lxc/cluster.go:521 lxc/cluster.go:604 lxc/cluster.go:689 lxc/cluster.go:804 lxc/cluster.go:880 lxc/cluster.go:982 lxc/cluster.go:1061 lxc/cluster.go:1168 lxc/cluster.go:1190 lxc/cluster_group.go:30 lxc/cluster_group.go:84 lxc/cluster_group.go:157 lxc/cluster_group.go:214 lxc/cluster_group.go:266 lxc/cluster_group.go:382 lxc/cluster_group.go:456 lxc/cluster_group.go:529 lxc/cluster_group.go:577 lxc/cluster_group.go:631 lxc/cluster_role.go:23 lxc/cluster_role.go:50 lxc/cluster_role.go:106 lxc/config.go:32 lxc/config.go:99 lxc/config.go:384 lxc/config.go:517 lxc/config.go:731 lxc/config.go:855 lxc/config.go:890 lxc/config.go:930 lxc/config.go:985 lxc/config.go:1076 lxc/config.go:1107 lxc/config.go:1161 lxc/config_device.go:24 lxc/config_device.go:78 lxc/config_device.go:208 lxc/config_device.go:285 lxc/config_device.go:356 lxc/config_device.go:450 lxc/config_device.go:548 lxc/config_device.go:555 lxc/config_device.go:668 lxc/config_device.go:741 lxc/config_metadata.go:27 lxc/config_metadata.go:55 lxc/config_metadata.go:180 lxc/config_template.go:27 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:240 lxc/config_template.go:300 lxc/config_trust.go:34 lxc/config_trust.go:87 lxc/config_trust.go:236 lxc/config_trust.go:350 lxc/config_trust.go:432 lxc/config_trust.go:534 lxc/config_trust.go:580 lxc/config_trust.go:651 lxc/console.go:37 lxc/copy.go:41 lxc/delete.go:31 lxc/exec.go:41 lxc/export.go:32 lxc/file.go:83 lxc/file.go:123 lxc/file.go:172 lxc/file.go:242 lxc/file.go:467 lxc/file.go:986 lxc/image.go:37 lxc/image.go:158 lxc/image.go:324 lxc/image.go:379 lxc/image.go:500 lxc/image.go:664 lxc/image.go:901 lxc/image.go:1035 lxc/image.go:1354 lxc/image.go:1441 lxc/image.go:1499 lxc/image.go:1550 lxc/image.go:1605 lxc/image_alias.go:24 lxc/image_alias.go:60 lxc/image_alias.go:107 lxc/image_alias.go:152 lxc/image_alias.go:255 lxc/import.go:29 lxc/info.go:32 lxc/init.go:43 lxc/launch.go:24 lxc/list.go:48 lxc/main.go:82 lxc/manpage.go:22 lxc/monitor.go:33 lxc/move.go:37 lxc/network.go:32 lxc/network.go:135 lxc/network.go:220 lxc/network.go:293 lxc/network.go:372 lxc/network.go:422 lxc/network.go:507 lxc/network.go:592 lxc/network.go:720 lxc/network.go:789 lxc/network.go:912 lxc/network.go:1005 lxc/network.go:1076 lxc/network.go:1128 lxc/network.go:1216 lxc/network.go:1280 lxc/network_acl.go:29 lxc/network_acl.go:94 lxc/network_acl.go:165 lxc/network_acl.go:218 lxc/network_acl.go:266 lxc/network_acl.go:327 lxc/network_acl.go:412 lxc/network_acl.go:492 lxc/network_acl.go:522 lxc/network_acl.go:653 lxc/network_acl.go:702 lxc/network_acl.go:751 lxc/network_acl.go:766 lxc/network_acl.go:887 lxc/network_allocations.go:51 lxc/network_forward.go:33 lxc/network_forward.go:90 lxc/network_forward.go:171 lxc/network_forward.go:236 lxc/network_forward.go:379 lxc/network_forward.go:448 lxc/network_forward.go:546 lxc/network_forward.go:576 lxc/network_forward.go:718 lxc/network_forward.go:780 lxc/network_forward.go:795 lxc/network_forward.go:860 lxc/network_load_balancer.go:33 lxc/network_load_balancer.go:94 lxc/network_load_balancer.go:173 lxc/network_load_balancer.go:238 lxc/network_load_balancer.go:383 lxc/network_load_balancer.go:451 lxc/network_load_balancer.go:549 lxc/network_load_balancer.go:579 lxc/network_load_balancer.go:722 lxc/network_load_balancer.go:783 lxc/network_load_balancer.go:798 lxc/network_load_balancer.go:862 lxc/network_load_balancer.go:948 lxc/network_load_balancer.go:963 lxc/network_load_balancer.go:1024 lxc/network_peer.go:28 lxc/network_peer.go:81 lxc/network_peer.go:158 lxc/network_peer.go:215 lxc/network_peer.go:331 lxc/network_peer.go:399 lxc/network_peer.go:488 lxc/network_peer.go:518 lxc/network_peer.go:643 lxc/network_zone.go:28 lxc/network_zone.go:85 lxc/network_zone.go:156 lxc/network_zone.go:211 lxc/network_zone.go:271 lxc/network_zone.go:354 lxc/network_zone.go:434 lxc/network_zone.go:465 lxc/network_zone.go:584 lxc/network_zone.go:632 lxc/network_zone.go:689 lxc/network_zone.go:759 lxc/network_zone.go:811 lxc/network_zone.go:870 lxc/network_zone.go:952 lxc/network_zone.go:1028 lxc/network_zone.go:1058 lxc/network_zone.go:1176 lxc/network_zone.go:1225 lxc/network_zone.go:1240 lxc/network_zone.go:1286 lxc/operation.go:24 lxc/operation.go:56 lxc/operation.go:106 lxc/operation.go:193 lxc/profile.go:29 lxc/profile.go:104 lxc/profile.go:167 lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:394 lxc/profile.go:444 lxc/profile.go:572 lxc/profile.go:633 lxc/profile.go:694 lxc/profile.go:770 lxc/profile.go:822 lxc/profile.go:898 lxc/profile.go:954 lxc/project.go:29 lxc/project.go:93 lxc/project.go:158 lxc/project.go:221 lxc/project.go:349 lxc/project.go:410 lxc/project.go:523 lxc/project.go:580 lxc/project.go:659 lxc/project.go:690 lxc/project.go:743 lxc/project.go:802 lxc/publish.go:33 lxc/query.go:34 lxc/rebuild.go:27 lxc/remote.go:34 lxc/remote.go:90 lxc/remote.go:647 lxc/remote.go:685 lxc/remote.go:771 lxc/remote.go:844 lxc/remote.go:900 lxc/remote.go:940 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:28 lxc/storage.go:33 lxc/storage.go:96 lxc/storage.go:170 lxc/storage.go:220 lxc/storage.go:344 lxc/storage.go:414 lxc/storage.go:586 lxc/storage.go:665 lxc/storage.go:761 lxc/storage.go:847 lxc/storage_bucket.go:29 lxc/storage_bucket.go:83 lxc/storage_bucket.go:183 lxc/storage_bucket.go:244 lxc/storage_bucket.go:377 lxc/storage_bucket.go:453 lxc/storage_bucket.go:530 lxc/storage_bucket.go:624 lxc/storage_bucket.go:693 lxc/storage_bucket.go:727 lxc/storage_bucket.go:768 lxc/storage_bucket.go:847 lxc/storage_bucket.go:925 lxc/storage_bucket.go:989 lxc/storage_bucket.go:1124 lxc/storage_volume.go:43 lxc/storage_volume.go:165 lxc/storage_volume.go:263 lxc/storage_volume.go:354 lxc/storage_volume.go:557 lxc/storage_volume.go:636 lxc/storage_volume.go:711 lxc/storage_volume.go:793 lxc/storage_volume.go:874 lxc/storage_volume.go:1083 lxc/storage_volume.go:1198 lxc/storage_volume.go:1345 lxc/storage_volume.go:1429 lxc/storage_volume.go:1674 lxc/storage_volume.go:1755 lxc/storage_volume.go:1870 lxc/storage_volume.go:2014 lxc/storage_volume.go:2123 lxc/storage_volume.go:2169 lxc/storage_volume.go:2266 lxc/storage_volume.go:2333 lxc/storage_volume.go:2487 lxc/version.go:22 lxc/warning.go:29 lxc/warning.go:71 lxc/warning.go:262 lxc/warning.go:303 lxc/warning.go:357 msgid "Description" msgstr "" @@ -1767,7 +1767,7 @@ msgstr "" msgid "Edit network zone record configurations as YAML" msgstr "" -#: lxc/profile.go:423 lxc/profile.go:424 +#: lxc/profile.go:443 lxc/profile.go:444 msgid "Edit profile configurations as YAML" msgstr "" @@ -1842,7 +1842,7 @@ msgstr "" msgid "Error retrieving aliases: %w" msgstr "" -#: lxc/cluster.go:414 lxc/config.go:621 lxc/config.go:653 lxc/network.go:1194 lxc/network_acl.go:467 lxc/network_forward.go:519 lxc/network_load_balancer.go:522 lxc/network_peer.go:463 lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:856 lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:597 lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 +#: lxc/cluster.go:414 lxc/config.go:621 lxc/config.go:653 lxc/network.go:1194 lxc/network_acl.go:467 lxc/network_forward.go:519 lxc/network_load_balancer.go:522 lxc/network_peer.go:463 lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:876 lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:597 lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format msgid "Error setting properties: %v" msgstr "" @@ -1852,7 +1852,7 @@ msgstr "" msgid "Error unsetting properties: %v" msgstr "" -#: lxc/cluster.go:408 lxc/network.go:1188 lxc/network_acl.go:461 lxc/network_forward.go:513 lxc/network_load_balancer.go:516 lxc/network_peer.go:457 lxc/network_zone.go:403 lxc/network_zone.go:997 lxc/profile.go:850 lxc/project.go:628 lxc/storage.go:721 lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 lxc/storage_volume.go:1979 +#: lxc/cluster.go:408 lxc/network.go:1188 lxc/network_acl.go:461 lxc/network_forward.go:513 lxc/network_load_balancer.go:516 lxc/network_peer.go:457 lxc/network_zone.go:403 lxc/network_zone.go:997 lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 lxc/storage_volume.go:1979 #, c-format msgid "Error unsetting property: %v" msgstr "" @@ -2170,7 +2170,7 @@ msgid "Forcefully removing a server from the cluster should only be done as a "Are you really sure you want to force removing %s? (yes/no): " msgstr "" -#: lxc/alias.go:112 lxc/auth.go:336 lxc/auth.go:769 lxc/auth.go:1696 lxc/cluster.go:124 lxc/cluster.go:881 lxc/cluster_group.go:384 lxc/config_template.go:242 lxc/config_trust.go:352 lxc/config_trust.go:434 lxc/image.go:1061 lxc/image_alias.go:157 lxc/list.go:132 lxc/network.go:916 lxc/network.go:1007 lxc/network_acl.go:97 lxc/network_allocations.go:57 lxc/network_forward.go:93 lxc/network_load_balancer.go:97 lxc/network_peer.go:84 lxc/network_zone.go:88 lxc/network_zone.go:692 lxc/operation.go:108 lxc/profile.go:617 lxc/project.go:412 lxc/project.go:804 lxc/remote.go:689 lxc/storage.go:588 lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 lxc/storage_volume.go:1446 lxc/warning.go:93 +#: lxc/alias.go:112 lxc/auth.go:336 lxc/auth.go:769 lxc/auth.go:1696 lxc/cluster.go:124 lxc/cluster.go:881 lxc/cluster_group.go:384 lxc/config_template.go:242 lxc/config_trust.go:352 lxc/config_trust.go:434 lxc/image.go:1061 lxc/image_alias.go:157 lxc/list.go:132 lxc/network.go:916 lxc/network.go:1007 lxc/network_acl.go:97 lxc/network_allocations.go:57 lxc/network_forward.go:93 lxc/network_load_balancer.go:97 lxc/network_peer.go:84 lxc/network_zone.go:88 lxc/network_zone.go:692 lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 lxc/project.go:804 lxc/remote.go:689 lxc/storage.go:588 lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 lxc/storage_volume.go:1446 lxc/warning.go:93 msgid "Format (csv|json|table|yaml|compact)" msgstr "" @@ -2278,7 +2278,7 @@ msgstr "" msgid "Get the key as a network zone record property" msgstr "" -#: lxc/profile.go:557 +#: lxc/profile.go:577 msgid "Get the key as a profile property" msgstr "" @@ -2342,7 +2342,7 @@ msgstr "" msgid "Get values for network zone record configuration keys" msgstr "" -#: lxc/profile.go:551 lxc/profile.go:552 +#: lxc/profile.go:571 lxc/profile.go:572 msgid "Get values for profile configuration keys" msgstr "" @@ -3044,7 +3044,7 @@ msgstr "" msgid "List permissions" msgstr "" -#: lxc/profile.go:612 lxc/profile.go:613 +#: lxc/profile.go:632 lxc/profile.go:633 msgid "List profiles" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Missing identity provider group name argument" msgstr "" -#: lxc/config_metadata.go:103 lxc/config_metadata.go:204 lxc/config_template.go:91 lxc/config_template.go:134 lxc/config_template.go:176 lxc/config_template.go:265 lxc/config_template.go:324 lxc/profile.go:128 lxc/profile.go:201 lxc/profile.go:698 lxc/rebuild.go:60 +#: lxc/config_metadata.go:103 lxc/config_metadata.go:204 lxc/config_template.go:91 lxc/config_template.go:134 lxc/config_template.go:176 lxc/config_template.go:265 lxc/config_template.go:324 lxc/profile.go:128 lxc/profile.go:201 lxc/profile.go:718 lxc/rebuild.go:60 msgid "Missing instance name" msgstr "" @@ -3530,7 +3530,7 @@ msgstr "" msgid "Missing pool name" msgstr "" -#: lxc/profile.go:344 lxc/profile.go:398 lxc/profile.go:472 lxc/profile.go:577 lxc/profile.go:774 lxc/profile.go:829 lxc/profile.go:902 +#: lxc/profile.go:363 lxc/profile.go:418 lxc/profile.go:492 lxc/profile.go:597 lxc/profile.go:794 lxc/profile.go:849 lxc/profile.go:922 msgid "Missing profile name" msgstr "" @@ -3647,7 +3647,7 @@ msgstr "" msgid "Must supply instance name for: " msgstr "" -#: lxc/auth.go:375 lxc/auth.go:815 lxc/auth.go:1735 lxc/cluster.go:183 lxc/cluster.go:964 lxc/cluster_group.go:437 lxc/config_trust.go:409 lxc/config_trust.go:514 lxc/list.go:564 lxc/network.go:980 lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:138 lxc/network_zone.go:741 lxc/profile.go:657 lxc/project.go:498 lxc/remote.go:747 lxc/storage.go:638 lxc/storage_bucket.go:506 lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 +#: lxc/auth.go:375 lxc/auth.go:815 lxc/auth.go:1735 lxc/cluster.go:183 lxc/cluster.go:964 lxc/cluster_group.go:437 lxc/config_trust.go:409 lxc/config_trust.go:514 lxc/list.go:564 lxc/network.go:980 lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:138 lxc/network_zone.go:741 lxc/profile.go:677 lxc/project.go:498 lxc/remote.go:747 lxc/storage.go:638 lxc/storage_bucket.go:506 lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 msgid "NAME" msgstr "" @@ -4031,7 +4031,7 @@ msgstr "" msgid "Press ctrl+c to finish" msgstr "" -#: lxc/auth.go:301 lxc/auth.go:1055 lxc/auth.go:1661 lxc/cluster.go:771 lxc/cluster_group.go:340 lxc/config.go:273 lxc/config.go:348 lxc/config.go:1275 lxc/config_metadata.go:148 lxc/config_template.go:206 lxc/config_trust.go:315 lxc/image.go:467 lxc/network.go:687 lxc/network_acl.go:621 lxc/network_forward.go:686 lxc/network_load_balancer.go:690 lxc/network_peer.go:611 lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:519 lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:344 lxc/storage_bucket.go:1093 lxc/storage_volume.go:1017 lxc/storage_volume.go:1049 +#: lxc/auth.go:301 lxc/auth.go:1055 lxc/auth.go:1661 lxc/cluster.go:771 lxc/cluster_group.go:340 lxc/config.go:273 lxc/config.go:348 lxc/config.go:1275 lxc/config_metadata.go:148 lxc/config_template.go:206 lxc/config_trust.go:315 lxc/image.go:467 lxc/network.go:687 lxc/network_acl.go:621 lxc/network_forward.go:686 lxc/network_load_balancer.go:690 lxc/network_peer.go:611 lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:539 lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:344 lxc/storage_bucket.go:1093 lxc/storage_volume.go:1017 lxc/storage_volume.go:1049 msgid "Press enter to open the editor again or ctrl+c to abort change" msgstr "" @@ -4071,27 +4071,27 @@ msgstr "" msgid "Profile %s added to %s" msgstr "" -#: lxc/profile.go:357 +#: lxc/profile.go:377 #, c-format msgid "Profile %s created" msgstr "" -#: lxc/profile.go:408 +#: lxc/profile.go:428 #, c-format msgid "Profile %s deleted" msgstr "" -#: lxc/profile.go:708 +#: lxc/profile.go:728 #, c-format msgid "Profile %s isn't currently applied to %s" msgstr "" -#: lxc/profile.go:733 +#: lxc/profile.go:753 #, c-format msgid "Profile %s removed from %s" msgstr "" -#: lxc/profile.go:784 +#: lxc/profile.go:804 #, c-format msgid "Profile %s renamed to %s" msgstr "" @@ -4424,7 +4424,7 @@ msgstr "" msgid "Remove ports from a load balancer" msgstr "" -#: lxc/profile.go:673 lxc/profile.go:674 +#: lxc/profile.go:693 lxc/profile.go:694 msgid "Remove profiles from instances" msgstr "" @@ -4476,7 +4476,7 @@ msgstr "" msgid "Rename networks" msgstr "" -#: lxc/profile.go:749 lxc/profile.go:750 +#: lxc/profile.go:769 lxc/profile.go:770 msgid "Rename profiles" msgstr "" @@ -4799,11 +4799,11 @@ msgstr "" msgid "Set network zone record configuration keys" msgstr "" -#: lxc/profile.go:801 +#: lxc/profile.go:821 msgid "Set profile configuration keys" msgstr "" -#: lxc/profile.go:802 +#: lxc/profile.go:822 msgid "Set profile configuration keys\n" "\n" "For backward compatibility, a single configuration key may still be set with:\n" @@ -4902,7 +4902,7 @@ msgstr "" msgid "Set the key as a network zone record property" msgstr "" -#: lxc/profile.go:809 +#: lxc/profile.go:829 msgid "Set the key as a profile property" msgstr "" @@ -5043,7 +5043,7 @@ msgstr "" msgid "Show network zone record configurations" msgstr "" -#: lxc/profile.go:877 lxc/profile.go:878 +#: lxc/profile.go:897 lxc/profile.go:898 msgid "Show profile configurations" msgstr "" @@ -5436,7 +5436,7 @@ msgstr "" msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" -#: lxc/profile.go:590 +#: lxc/profile.go:610 #, c-format msgid "The property %q does not exist on the profile %q: %v" msgstr "" @@ -5636,7 +5636,7 @@ msgstr "" msgid "USAGE" msgstr "" -#: lxc/network.go:986 lxc/network_acl.go:149 lxc/network_allocations.go:24 lxc/network_zone.go:140 lxc/profile.go:659 lxc/project.go:506 lxc/storage.go:647 lxc/storage_volume.go:1564 +#: lxc/network.go:986 lxc/network_acl.go:149 lxc/network_allocations.go:24 lxc/network_zone.go:140 lxc/profile.go:679 lxc/project.go:506 lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -5757,7 +5757,7 @@ msgstr "" msgid "Unset network zone record configuration keys" msgstr "" -#: lxc/profile.go:933 lxc/profile.go:934 +#: lxc/profile.go:953 lxc/profile.go:954 msgid "Unset profile configuration keys" msgstr "" @@ -5809,7 +5809,7 @@ msgstr "" msgid "Unset the key as a network zone record property" msgstr "" -#: lxc/profile.go:938 +#: lxc/profile.go:958 msgid "Unset the key as a profile property" msgstr "" @@ -5998,7 +5998,7 @@ msgstr "" msgid "[] [] []" msgstr "" -#: lxc/auth.go:329 lxc/auth.go:762 lxc/auth.go:893 lxc/auth.go:1689 lxc/cluster.go:119 lxc/cluster.go:878 lxc/cluster_group.go:379 lxc/config_trust.go:347 lxc/config_trust.go:430 lxc/monitor.go:31 lxc/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:82 lxc/operation.go:103 lxc/profile.go:610 lxc/project.go:407 lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 +#: lxc/auth.go:329 lxc/auth.go:762 lxc/auth.go:893 lxc/auth.go:1689 lxc/cluster.go:119 lxc/cluster.go:878 lxc/cluster_group.go:379 lxc/config_trust.go:347 lxc/config_trust.go:430 lxc/monitor.go:31 lxc/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:82 lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 msgid "[:]" msgstr "" @@ -6194,7 +6194,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6474,7 +6474,7 @@ msgstr "" msgid "[:]/[/] [:]/" msgstr "" -#: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6490,11 +6490,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6502,7 +6502,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -6817,6 +6817,13 @@ msgid "lxc profile assign foo default,bar\n" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "lxc profile create p1\n" + "\n" + "lxc profile create p1 < config.yaml\n" + " Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "lxc profile device add [:]profile1 disk source=/share/c1 path=/opt\n" " Will mount the host's /share/c1 onto /opt in the instance.\n" @@ -6825,7 +6832,7 @@ msgid "lxc profile device add [:]profile1 disk source=/s " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" msgstr "" diff --git a/po/mr.po b/po/mr.po index 8d2f4fd94103..65154ff39c50 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Marathi :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/nb_NO.po b/po/nb_NO.po index 234bba682c5a..8665352abe8e 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/nl.po b/po/nl.po index a0139431659c..4647de307584 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch :]" msgstr "" @@ -6873,7 +6873,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -7177,7 +7177,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -7193,11 +7193,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -7205,7 +7205,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7568,6 +7568,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7579,7 +7587,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/pa.po b/po/pa.po index e9d10d5e51d7..79b4f25b2ad0 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Punjabi :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/pl.po b/po/pl.po index af345718f56d..be9039c72a20 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish :]" msgstr "" @@ -6911,7 +6911,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -7215,7 +7215,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -7231,11 +7231,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -7243,7 +7243,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7606,6 +7606,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7617,7 +7625,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/pt.po b/po/pt.po index f88dc621aca4..a7a8ee469011 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -367,7 +367,7 @@ msgid "" "### Note that only the configuration can be changed." msgstr "" -#: lxc/profile.go:436 +#: lxc/profile.go:456 msgid "" "### This is a YAML representation of the profile.\n" "### Any line starting with a '# will be ignored.\n" @@ -1212,7 +1212,7 @@ msgstr "" #: lxc/config_trust.go:314 lxc/image.go:466 lxc/network.go:686 #: lxc/network_acl.go:620 lxc/network_forward.go:685 #: lxc/network_load_balancer.go:689 lxc/network_peer.go:610 -#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:518 +#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:538 #: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:343 #: lxc/storage_bucket.go:1092 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 @@ -1515,7 +1515,7 @@ msgstr "" #: lxc/network_acl.go:148 lxc/network_forward.go:149 #: lxc/network_load_balancer.go:152 lxc/network_peer.go:140 #: lxc/network_zone.go:139 lxc/network_zone.go:742 lxc/operation.go:172 -#: lxc/profile.go:658 lxc/project.go:505 lxc/storage.go:646 +#: lxc/profile.go:678 lxc/project.go:505 lxc/storage.go:646 #: lxc/storage_bucket.go:507 lxc/storage_bucket.go:827 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" @@ -1613,7 +1613,7 @@ msgstr "" msgid "Delete networks" msgstr "" -#: lxc/profile.go:373 lxc/profile.go:374 +#: lxc/profile.go:393 lxc/profile.go:394 msgid "Delete profiles" msgstr "" @@ -1714,9 +1714,9 @@ msgstr "" #: lxc/network_zone.go:1225 lxc/network_zone.go:1240 lxc/network_zone.go:1286 #: lxc/operation.go:24 lxc/operation.go:56 lxc/operation.go:106 #: lxc/operation.go:193 lxc/profile.go:29 lxc/profile.go:104 lxc/profile.go:167 -#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:374 lxc/profile.go:424 -#: lxc/profile.go:552 lxc/profile.go:613 lxc/profile.go:674 lxc/profile.go:750 -#: lxc/profile.go:802 lxc/profile.go:878 lxc/profile.go:934 lxc/project.go:29 +#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:394 lxc/profile.go:444 +#: lxc/profile.go:572 lxc/profile.go:633 lxc/profile.go:694 lxc/profile.go:770 +#: lxc/profile.go:822 lxc/profile.go:898 lxc/profile.go:954 lxc/project.go:29 #: lxc/project.go:93 lxc/project.go:158 lxc/project.go:221 lxc/project.go:349 #: lxc/project.go:410 lxc/project.go:523 lxc/project.go:580 lxc/project.go:659 #: lxc/project.go:690 lxc/project.go:743 lxc/project.go:802 lxc/publish.go:33 @@ -1975,7 +1975,7 @@ msgstr "" msgid "Edit network zone record configurations as YAML" msgstr "" -#: lxc/profile.go:423 lxc/profile.go:424 +#: lxc/profile.go:443 lxc/profile.go:444 msgid "Edit profile configurations as YAML" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:621 lxc/config.go:653 lxc/network.go:1194 #: lxc/network_acl.go:467 lxc/network_forward.go:519 #: lxc/network_load_balancer.go:522 lxc/network_peer.go:463 -#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:856 +#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:876 #: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:597 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format @@ -2073,7 +2073,7 @@ msgstr "" #: lxc/cluster.go:408 lxc/network.go:1188 lxc/network_acl.go:461 #: lxc/network_forward.go:513 lxc/network_load_balancer.go:516 #: lxc/network_peer.go:457 lxc/network_zone.go:403 lxc/network_zone.go:997 -#: lxc/profile.go:850 lxc/project.go:628 lxc/storage.go:721 +#: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 #: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format @@ -2411,7 +2411,7 @@ msgstr "" #: lxc/network.go:1007 lxc/network_acl.go:97 lxc/network_allocations.go:57 #: lxc/network_forward.go:93 lxc/network_load_balancer.go:97 #: lxc/network_peer.go:84 lxc/network_zone.go:88 lxc/network_zone.go:692 -#: lxc/operation.go:108 lxc/profile.go:617 lxc/project.go:412 +#: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 #: lxc/project.go:804 lxc/remote.go:689 lxc/storage.go:588 #: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 #: lxc/storage_volume.go:1446 lxc/warning.go:93 @@ -2522,7 +2522,7 @@ msgstr "" msgid "Get the key as a network zone record property" msgstr "" -#: lxc/profile.go:557 +#: lxc/profile.go:577 msgid "Get the key as a profile property" msgstr "" @@ -2586,7 +2586,7 @@ msgstr "" msgid "Get values for network zone record configuration keys" msgstr "" -#: lxc/profile.go:551 lxc/profile.go:552 +#: lxc/profile.go:571 lxc/profile.go:572 msgid "Get values for profile configuration keys" msgstr "" @@ -3307,7 +3307,7 @@ msgstr "" msgid "List permissions" msgstr "" -#: lxc/profile.go:612 lxc/profile.go:613 +#: lxc/profile.go:632 lxc/profile.go:633 msgid "List profiles" msgstr "" @@ -3772,7 +3772,7 @@ msgstr "" #: lxc/config_template.go:91 lxc/config_template.go:134 #: lxc/config_template.go:176 lxc/config_template.go:265 #: lxc/config_template.go:324 lxc/profile.go:128 lxc/profile.go:201 -#: lxc/profile.go:698 lxc/rebuild.go:60 +#: lxc/profile.go:718 lxc/rebuild.go:60 msgid "Missing instance name" msgstr "" @@ -3858,8 +3858,8 @@ msgstr "" msgid "Missing pool name" msgstr "" -#: lxc/profile.go:344 lxc/profile.go:398 lxc/profile.go:472 lxc/profile.go:577 -#: lxc/profile.go:774 lxc/profile.go:829 lxc/profile.go:902 +#: lxc/profile.go:363 lxc/profile.go:418 lxc/profile.go:492 lxc/profile.go:597 +#: lxc/profile.go:794 lxc/profile.go:849 lxc/profile.go:922 msgid "Missing profile name" msgstr "" @@ -3988,7 +3988,7 @@ msgstr "" #: lxc/cluster.go:964 lxc/cluster_group.go:437 lxc/config_trust.go:409 #: lxc/config_trust.go:514 lxc/list.go:564 lxc/network.go:980 #: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:138 -#: lxc/network_zone.go:741 lxc/profile.go:657 lxc/project.go:498 +#: lxc/network_zone.go:741 lxc/profile.go:677 lxc/project.go:498 #: lxc/remote.go:747 lxc/storage.go:638 lxc/storage_bucket.go:506 #: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 msgid "NAME" @@ -4384,7 +4384,7 @@ msgstr "" #: lxc/config_trust.go:315 lxc/image.go:467 lxc/network.go:687 #: lxc/network_acl.go:621 lxc/network_forward.go:686 #: lxc/network_load_balancer.go:690 lxc/network_peer.go:611 -#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:519 +#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:539 #: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:344 #: lxc/storage_bucket.go:1093 lxc/storage_volume.go:1017 #: lxc/storage_volume.go:1049 @@ -4427,27 +4427,27 @@ msgstr "" msgid "Profile %s added to %s" msgstr "" -#: lxc/profile.go:357 +#: lxc/profile.go:377 #, c-format msgid "Profile %s created" msgstr "" -#: lxc/profile.go:408 +#: lxc/profile.go:428 #, c-format msgid "Profile %s deleted" msgstr "" -#: lxc/profile.go:708 +#: lxc/profile.go:728 #, c-format msgid "Profile %s isn't currently applied to %s" msgstr "" -#: lxc/profile.go:733 +#: lxc/profile.go:753 #, c-format msgid "Profile %s removed from %s" msgstr "" -#: lxc/profile.go:784 +#: lxc/profile.go:804 #, c-format msgid "Profile %s renamed to %s" msgstr "" @@ -4797,7 +4797,7 @@ msgstr "" msgid "Remove ports from a load balancer" msgstr "" -#: lxc/profile.go:673 lxc/profile.go:674 +#: lxc/profile.go:693 lxc/profile.go:694 msgid "Remove profiles from instances" msgstr "" @@ -4850,7 +4850,7 @@ msgstr "" msgid "Rename networks" msgstr "" -#: lxc/profile.go:749 lxc/profile.go:750 +#: lxc/profile.go:769 lxc/profile.go:770 msgid "Rename profiles" msgstr "" @@ -5194,11 +5194,11 @@ msgstr "" msgid "Set network zone record configuration keys" msgstr "" -#: lxc/profile.go:801 +#: lxc/profile.go:821 msgid "Set profile configuration keys" msgstr "" -#: lxc/profile.go:802 +#: lxc/profile.go:822 msgid "" "Set profile configuration keys\n" "\n" @@ -5307,7 +5307,7 @@ msgstr "" msgid "Set the key as a network zone record property" msgstr "" -#: lxc/profile.go:809 +#: lxc/profile.go:829 msgid "Set the key as a profile property" msgstr "" @@ -5452,7 +5452,7 @@ msgstr "" msgid "Show network zone record configurations" msgstr "" -#: lxc/profile.go:877 lxc/profile.go:878 +#: lxc/profile.go:897 lxc/profile.go:898 msgid "Show profile configurations" msgstr "" @@ -5852,7 +5852,7 @@ msgstr "" msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" -#: lxc/profile.go:590 +#: lxc/profile.go:610 #, c-format msgid "The property %q does not exist on the profile %q: %v" msgstr "" @@ -6064,7 +6064,7 @@ msgid "USAGE" msgstr "" #: lxc/network.go:986 lxc/network_acl.go:149 lxc/network_allocations.go:24 -#: lxc/network_zone.go:140 lxc/profile.go:659 lxc/project.go:506 +#: lxc/network_zone.go:140 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6187,7 +6187,7 @@ msgstr "" msgid "Unset network zone record configuration keys" msgstr "" -#: lxc/profile.go:933 lxc/profile.go:934 +#: lxc/profile.go:953 lxc/profile.go:954 msgid "Unset profile configuration keys" msgstr "" @@ -6239,7 +6239,7 @@ msgstr "" msgid "Unset the key as a network zone record property" msgstr "" -#: lxc/profile.go:938 +#: lxc/profile.go:958 msgid "Unset the key as a profile property" msgstr "" @@ -6442,7 +6442,7 @@ msgstr "" #: lxc/cluster.go:119 lxc/cluster.go:878 lxc/cluster_group.go:379 #: lxc/config_trust.go:347 lxc/config_trust.go:430 lxc/monitor.go:31 #: lxc/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:82 -#: lxc/operation.go:103 lxc/profile.go:610 lxc/project.go:407 +#: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 msgid "[:]" msgstr "" @@ -6646,7 +6646,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6950,7 +6950,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6966,11 +6966,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6978,7 +6978,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7341,6 +7341,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7352,7 +7360,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/pt_BR.po b/po/pt_BR.po index ad7bc54c1b9c..b3747eee27fa 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:08+0000\n" "Last-Translator: Renato dos Santos \n" "Language-Team: Portuguese (Brazil) :]" msgstr "" @@ -7213,7 +7213,7 @@ msgstr "Editar templates de arquivo do container" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -7550,7 +7550,7 @@ msgid "[:]/[/] [:]/" msgstr "Criar perfis" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 #, fuzzy msgid "[:]" msgstr "Criar perfis" @@ -7567,11 +7567,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -7579,7 +7579,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7954,6 +7954,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7965,7 +7973,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/ru.po b/po/ru.po index 1a73189e1e18..faf1b5a1543b 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:06+0000\n" "Last-Translator: Александр Киль \n" "Language-Team: Russian :]" @@ -7358,7 +7358,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 #, fuzzy msgid "[:] " msgstr "" @@ -7938,7 +7938,7 @@ msgstr "" "lxc %s [:] [[:]...]%s" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 #, fuzzy msgid "[:]" msgstr "" @@ -7970,7 +7970,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 #, fuzzy msgid "[:] " msgstr "" @@ -7978,7 +7978,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:800 +#: lxc/profile.go:820 #, fuzzy msgid "[:] ..." msgstr "" @@ -7994,7 +7994,7 @@ msgstr "" "\n" "lxc %s [:] [[:]...]%s" -#: lxc/profile.go:747 +#: lxc/profile.go:767 #, fuzzy msgid "[:] " msgstr "" @@ -8441,6 +8441,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -8452,7 +8460,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/si.po b/po/si.po index 233057aacb95..c67074632bd6 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Sinhala :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/sl.po b/po/sl.po index a179e37aa1ca..db25190912e7 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovenian :]" msgstr "" @@ -6650,7 +6650,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6954,7 +6954,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6970,11 +6970,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6982,7 +6982,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7345,6 +7345,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7356,7 +7364,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/sr.po b/po/sr.po index 7df4d2b66ed0..189ebc26e321 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian :]" msgstr "" @@ -6650,7 +6650,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6954,7 +6954,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6970,11 +6970,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6982,7 +6982,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7345,6 +7345,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7356,7 +7364,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/sv.po b/po/sv.po index 3056e94a0d36..2a5fb100e0af 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/te.po b/po/te.po index a24370b19c94..6d72da4092d7 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Telugu :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/th.po b/po/th.po index d305a244b214..e1c6c5acc9b2 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -367,7 +367,7 @@ msgid "" "### Note that only the configuration can be changed." msgstr "" -#: lxc/profile.go:436 +#: lxc/profile.go:456 msgid "" "### This is a YAML representation of the profile.\n" "### Any line starting with a '# will be ignored.\n" @@ -1212,7 +1212,7 @@ msgstr "" #: lxc/config_trust.go:314 lxc/image.go:466 lxc/network.go:686 #: lxc/network_acl.go:620 lxc/network_forward.go:685 #: lxc/network_load_balancer.go:689 lxc/network_peer.go:610 -#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:518 +#: lxc/network_zone.go:551 lxc/network_zone.go:1143 lxc/profile.go:538 #: lxc/project.go:315 lxc/storage.go:310 lxc/storage_bucket.go:343 #: lxc/storage_bucket.go:1092 lxc/storage_volume.go:1016 #: lxc/storage_volume.go:1048 @@ -1515,7 +1515,7 @@ msgstr "" #: lxc/network_acl.go:148 lxc/network_forward.go:149 #: lxc/network_load_balancer.go:152 lxc/network_peer.go:140 #: lxc/network_zone.go:139 lxc/network_zone.go:742 lxc/operation.go:172 -#: lxc/profile.go:658 lxc/project.go:505 lxc/storage.go:646 +#: lxc/profile.go:678 lxc/project.go:505 lxc/storage.go:646 #: lxc/storage_bucket.go:507 lxc/storage_bucket.go:827 #: lxc/storage_volume.go:1562 msgid "DESCRIPTION" @@ -1613,7 +1613,7 @@ msgstr "" msgid "Delete networks" msgstr "" -#: lxc/profile.go:373 lxc/profile.go:374 +#: lxc/profile.go:393 lxc/profile.go:394 msgid "Delete profiles" msgstr "" @@ -1714,9 +1714,9 @@ msgstr "" #: lxc/network_zone.go:1225 lxc/network_zone.go:1240 lxc/network_zone.go:1286 #: lxc/operation.go:24 lxc/operation.go:56 lxc/operation.go:106 #: lxc/operation.go:193 lxc/profile.go:29 lxc/profile.go:104 lxc/profile.go:167 -#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:374 lxc/profile.go:424 -#: lxc/profile.go:552 lxc/profile.go:613 lxc/profile.go:674 lxc/profile.go:750 -#: lxc/profile.go:802 lxc/profile.go:878 lxc/profile.go:934 lxc/project.go:29 +#: lxc/profile.go:250 lxc/profile.go:320 lxc/profile.go:394 lxc/profile.go:444 +#: lxc/profile.go:572 lxc/profile.go:633 lxc/profile.go:694 lxc/profile.go:770 +#: lxc/profile.go:822 lxc/profile.go:898 lxc/profile.go:954 lxc/project.go:29 #: lxc/project.go:93 lxc/project.go:158 lxc/project.go:221 lxc/project.go:349 #: lxc/project.go:410 lxc/project.go:523 lxc/project.go:580 lxc/project.go:659 #: lxc/project.go:690 lxc/project.go:743 lxc/project.go:802 lxc/publish.go:33 @@ -1975,7 +1975,7 @@ msgstr "" msgid "Edit network zone record configurations as YAML" msgstr "" -#: lxc/profile.go:423 lxc/profile.go:424 +#: lxc/profile.go:443 lxc/profile.go:444 msgid "Edit profile configurations as YAML" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" #: lxc/cluster.go:414 lxc/config.go:621 lxc/config.go:653 lxc/network.go:1194 #: lxc/network_acl.go:467 lxc/network_forward.go:519 #: lxc/network_load_balancer.go:522 lxc/network_peer.go:463 -#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:856 +#: lxc/network_zone.go:409 lxc/network_zone.go:1003 lxc/profile.go:876 #: lxc/project.go:634 lxc/storage.go:727 lxc/storage_bucket.go:597 #: lxc/storage_volume.go:1947 lxc/storage_volume.go:1985 #, c-format @@ -2073,7 +2073,7 @@ msgstr "" #: lxc/cluster.go:408 lxc/network.go:1188 lxc/network_acl.go:461 #: lxc/network_forward.go:513 lxc/network_load_balancer.go:516 #: lxc/network_peer.go:457 lxc/network_zone.go:403 lxc/network_zone.go:997 -#: lxc/profile.go:850 lxc/project.go:628 lxc/storage.go:721 +#: lxc/profile.go:870 lxc/project.go:628 lxc/storage.go:721 #: lxc/storage_bucket.go:591 lxc/storage_volume.go:1941 #: lxc/storage_volume.go:1979 #, c-format @@ -2411,7 +2411,7 @@ msgstr "" #: lxc/network.go:1007 lxc/network_acl.go:97 lxc/network_allocations.go:57 #: lxc/network_forward.go:93 lxc/network_load_balancer.go:97 #: lxc/network_peer.go:84 lxc/network_zone.go:88 lxc/network_zone.go:692 -#: lxc/operation.go:108 lxc/profile.go:617 lxc/project.go:412 +#: lxc/operation.go:108 lxc/profile.go:637 lxc/project.go:412 #: lxc/project.go:804 lxc/remote.go:689 lxc/storage.go:588 #: lxc/storage_bucket.go:454 lxc/storage_bucket.go:769 #: lxc/storage_volume.go:1446 lxc/warning.go:93 @@ -2522,7 +2522,7 @@ msgstr "" msgid "Get the key as a network zone record property" msgstr "" -#: lxc/profile.go:557 +#: lxc/profile.go:577 msgid "Get the key as a profile property" msgstr "" @@ -2586,7 +2586,7 @@ msgstr "" msgid "Get values for network zone record configuration keys" msgstr "" -#: lxc/profile.go:551 lxc/profile.go:552 +#: lxc/profile.go:571 lxc/profile.go:572 msgid "Get values for profile configuration keys" msgstr "" @@ -3307,7 +3307,7 @@ msgstr "" msgid "List permissions" msgstr "" -#: lxc/profile.go:612 lxc/profile.go:613 +#: lxc/profile.go:632 lxc/profile.go:633 msgid "List profiles" msgstr "" @@ -3772,7 +3772,7 @@ msgstr "" #: lxc/config_template.go:91 lxc/config_template.go:134 #: lxc/config_template.go:176 lxc/config_template.go:265 #: lxc/config_template.go:324 lxc/profile.go:128 lxc/profile.go:201 -#: lxc/profile.go:698 lxc/rebuild.go:60 +#: lxc/profile.go:718 lxc/rebuild.go:60 msgid "Missing instance name" msgstr "" @@ -3858,8 +3858,8 @@ msgstr "" msgid "Missing pool name" msgstr "" -#: lxc/profile.go:344 lxc/profile.go:398 lxc/profile.go:472 lxc/profile.go:577 -#: lxc/profile.go:774 lxc/profile.go:829 lxc/profile.go:902 +#: lxc/profile.go:363 lxc/profile.go:418 lxc/profile.go:492 lxc/profile.go:597 +#: lxc/profile.go:794 lxc/profile.go:849 lxc/profile.go:922 msgid "Missing profile name" msgstr "" @@ -3988,7 +3988,7 @@ msgstr "" #: lxc/cluster.go:964 lxc/cluster_group.go:437 lxc/config_trust.go:409 #: lxc/config_trust.go:514 lxc/list.go:564 lxc/network.go:980 #: lxc/network_acl.go:147 lxc/network_peer.go:139 lxc/network_zone.go:138 -#: lxc/network_zone.go:741 lxc/profile.go:657 lxc/project.go:498 +#: lxc/network_zone.go:741 lxc/profile.go:677 lxc/project.go:498 #: lxc/remote.go:747 lxc/storage.go:638 lxc/storage_bucket.go:506 #: lxc/storage_bucket.go:826 lxc/storage_volume.go:1561 msgid "NAME" @@ -4384,7 +4384,7 @@ msgstr "" #: lxc/config_trust.go:315 lxc/image.go:467 lxc/network.go:687 #: lxc/network_acl.go:621 lxc/network_forward.go:686 #: lxc/network_load_balancer.go:690 lxc/network_peer.go:611 -#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:519 +#: lxc/network_zone.go:552 lxc/network_zone.go:1144 lxc/profile.go:539 #: lxc/project.go:316 lxc/storage.go:311 lxc/storage_bucket.go:344 #: lxc/storage_bucket.go:1093 lxc/storage_volume.go:1017 #: lxc/storage_volume.go:1049 @@ -4427,27 +4427,27 @@ msgstr "" msgid "Profile %s added to %s" msgstr "" -#: lxc/profile.go:357 +#: lxc/profile.go:377 #, c-format msgid "Profile %s created" msgstr "" -#: lxc/profile.go:408 +#: lxc/profile.go:428 #, c-format msgid "Profile %s deleted" msgstr "" -#: lxc/profile.go:708 +#: lxc/profile.go:728 #, c-format msgid "Profile %s isn't currently applied to %s" msgstr "" -#: lxc/profile.go:733 +#: lxc/profile.go:753 #, c-format msgid "Profile %s removed from %s" msgstr "" -#: lxc/profile.go:784 +#: lxc/profile.go:804 #, c-format msgid "Profile %s renamed to %s" msgstr "" @@ -4797,7 +4797,7 @@ msgstr "" msgid "Remove ports from a load balancer" msgstr "" -#: lxc/profile.go:673 lxc/profile.go:674 +#: lxc/profile.go:693 lxc/profile.go:694 msgid "Remove profiles from instances" msgstr "" @@ -4850,7 +4850,7 @@ msgstr "" msgid "Rename networks" msgstr "" -#: lxc/profile.go:749 lxc/profile.go:750 +#: lxc/profile.go:769 lxc/profile.go:770 msgid "Rename profiles" msgstr "" @@ -5194,11 +5194,11 @@ msgstr "" msgid "Set network zone record configuration keys" msgstr "" -#: lxc/profile.go:801 +#: lxc/profile.go:821 msgid "Set profile configuration keys" msgstr "" -#: lxc/profile.go:802 +#: lxc/profile.go:822 msgid "" "Set profile configuration keys\n" "\n" @@ -5307,7 +5307,7 @@ msgstr "" msgid "Set the key as a network zone record property" msgstr "" -#: lxc/profile.go:809 +#: lxc/profile.go:829 msgid "Set the key as a profile property" msgstr "" @@ -5452,7 +5452,7 @@ msgstr "" msgid "Show network zone record configurations" msgstr "" -#: lxc/profile.go:877 lxc/profile.go:878 +#: lxc/profile.go:897 lxc/profile.go:898 msgid "Show profile configurations" msgstr "" @@ -5852,7 +5852,7 @@ msgstr "" msgid "The property %q does not exist on the network zone record %q: %v" msgstr "" -#: lxc/profile.go:590 +#: lxc/profile.go:610 #, c-format msgid "The property %q does not exist on the profile %q: %v" msgstr "" @@ -6064,7 +6064,7 @@ msgid "USAGE" msgstr "" #: lxc/network.go:986 lxc/network_acl.go:149 lxc/network_allocations.go:24 -#: lxc/network_zone.go:140 lxc/profile.go:659 lxc/project.go:506 +#: lxc/network_zone.go:140 lxc/profile.go:679 lxc/project.go:506 #: lxc/storage.go:647 lxc/storage_volume.go:1564 msgid "USED BY" msgstr "" @@ -6187,7 +6187,7 @@ msgstr "" msgid "Unset network zone record configuration keys" msgstr "" -#: lxc/profile.go:933 lxc/profile.go:934 +#: lxc/profile.go:953 lxc/profile.go:954 msgid "Unset profile configuration keys" msgstr "" @@ -6239,7 +6239,7 @@ msgstr "" msgid "Unset the key as a network zone record property" msgstr "" -#: lxc/profile.go:938 +#: lxc/profile.go:958 msgid "Unset the key as a profile property" msgstr "" @@ -6442,7 +6442,7 @@ msgstr "" #: lxc/cluster.go:119 lxc/cluster.go:878 lxc/cluster_group.go:379 #: lxc/config_trust.go:347 lxc/config_trust.go:430 lxc/monitor.go:31 #: lxc/network.go:909 lxc/network_acl.go:91 lxc/network_zone.go:82 -#: lxc/operation.go:103 lxc/profile.go:610 lxc/project.go:407 +#: lxc/operation.go:103 lxc/profile.go:630 lxc/project.go:407 #: lxc/storage.go:583 lxc/version.go:20 lxc/warning.go:68 msgid "[:]" msgstr "" @@ -6646,7 +6646,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6950,7 +6950,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6966,11 +6966,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6978,7 +6978,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7341,6 +7341,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7352,7 +7360,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/tr.po b/po/tr.po index d83633527b7c..cb78db2d3d2b 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Turkish :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/tzm.po b/po/tzm.po index 3dc8c5d1e5d4..e8d5fa67b8be 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Tamazight (Central Atlas) :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/ug.po b/po/ug.po index b0ed589f4dc8..07df227b1515 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:10+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Uyghur :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/uk.po b/po/uk.po index f40ca163f3c7..142ddc65ebcc 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:09+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian :]" msgstr "" @@ -6650,7 +6650,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6954,7 +6954,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6970,11 +6970,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6982,7 +6982,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7345,6 +7345,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7356,7 +7364,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/zh_Hans.po b/po/zh_Hans.po index 3de6334cfa44..3513456e897a 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:07+0000\n" "Last-Translator: 0x0916 \n" "Language-Team: Chinese (Simplified) :]" msgstr "" @@ -6810,7 +6810,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -7114,7 +7114,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -7130,11 +7130,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -7142,7 +7142,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7505,6 +7505,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7516,7 +7524,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" diff --git a/po/zh_Hant.po b/po/zh_Hant.po index 9e818daa7d80..10a06424845b 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-07-24 14:26-0700\n" +"POT-Creation-Date: 2024-08-02 16:47+0200\n" "PO-Revision-Date: 2022-03-10 15:11+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional) :]" msgstr "" @@ -6649,7 +6649,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:102 lxc/profile.go:672 +#: lxc/profile.go:102 lxc/profile.go:692 msgid "[:] " msgstr "" @@ -6953,7 +6953,7 @@ msgid "[:]/[/] [:]/" msgstr "" #: lxc/config_device.go:290 lxc/config_device.go:664 lxc/profile.go:318 -#: lxc/profile.go:371 lxc/profile.go:422 lxc/profile.go:876 +#: lxc/profile.go:391 lxc/profile.go:442 lxc/profile.go:896 msgid "[:]" msgstr "" @@ -6969,11 +6969,11 @@ msgstr "" msgid "[:] [key=value...]" msgstr "" -#: lxc/profile.go:550 lxc/profile.go:932 +#: lxc/profile.go:570 lxc/profile.go:952 msgid "[:] " msgstr "" -#: lxc/profile.go:800 +#: lxc/profile.go:820 msgid "[:] ..." msgstr "" @@ -6981,7 +6981,7 @@ msgstr "" msgid "[:] ..." msgstr "" -#: lxc/profile.go:747 +#: lxc/profile.go:767 msgid "[:] " msgstr "" @@ -7344,6 +7344,14 @@ msgid "" " Remove all profile from \"foo\"" msgstr "" +#: lxc/profile.go:322 +msgid "" +"lxc profile create p1\n" +"\n" +"lxc profile create p1 < config.yaml\n" +" Create profile with configuration from config.yaml" +msgstr "" + #: lxc/config_device.go:90 msgid "" "lxc profile device add [:]profile1 disk source=/share/" @@ -7355,7 +7363,7 @@ msgid "" " Will mount the some-volume volume on some-pool onto /opt in the instance." msgstr "" -#: lxc/profile.go:426 +#: lxc/profile.go:446 msgid "" "lxc profile edit < profile.yaml\n" " Update a profile using the content of profile.yaml" From dfd1773340badfd2b9f0a1994d93356a267ef802 Mon Sep 17 00:00:00 2001 From: Gabriel Mougard Date: Fri, 2 Aug 2024 16:57:54 +0200 Subject: [PATCH 3/3] test: Add profile creation test with YAML Signed-off-by: Gabriel Mougard --- test/suites/basic.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/test/suites/basic.sh b/test/suites/basic.sh index b6aecc3a57bb..5f28fb5b1783 100644 --- a/test/suites/basic.sh +++ b/test/suites/basic.sh @@ -672,6 +672,26 @@ test_basic_usage() { lxc profile delete foo lxc delete -f c1 + # Test assigning a profile through a YAML file to an instance. + poolName=$(lxc profile device get default root pool) + lxc profile create foo < <(cat <